.mod-request-form-container {
    width: 500px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
}

.mod-request-form-container form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.submit-button {
    background-color: #25D366;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #128C7E;
}

/* Error states */
.form-group input:invalid,
.form-group select:invalid {
    border-color: #dc3545;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mod-request-form-container {
        margin: 1rem;
        padding: 1.5rem;
    }
}

.mod-request-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0; width: 100vw; height: 100vh;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.mod-request-modal[style*="display: flex"] {
    display: flex !important;
}
.mod-request-modal-overlay {
    position: absolute;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}
.mod-request-modal-content {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    padding: 2rem;
    max-width: 500px;
    width: 90vw;
    animation: modalIn 0.2s;
    margin: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}
@keyframes modalIn {
    from { transform: translateY(40px) scale(0.95); opacity: 0; }
    to   { transform: translateY(0) scale(1); opacity: 1; }
}
.mod-request-modal-close {
    position: absolute;
    top: 10px; right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
    z-index: 3;
    transition: color 0.2s;
}
.mod-request-modal-close:hover {
    color: #25D366;
} 