/* --- DASHBOARD VARIABLES --- */
body {
    background-color: #f4f6f8; /* Light gray background for dashboard */
}

/* Wrapper */
.dashboard-wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
}

.dashboard-layout {
    display: grid;
    grid-template-columns: 280px 1fr; /* Sidebar fixed width, Content fills rest */
    gap: 30px;
    align-items: start;
}

/* --- SIDEBAR --- */
.dash-sidebar {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    position: sticky;
    top: 100px;
}

/* User Card */
.user-profile-card {
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
    background: linear-gradient(to bottom, #fff, #f9f9f9);
}

.user-img {
    position: relative; width: 80px; height: 80px; margin: 0 auto 15px;
}
.user-img img {
    width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
    border: 3px solid var(--white); box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.status-indicator {
    position: absolute; bottom: 5px; right: 5px; width: 12px; height: 12px;
    background: var(--secondary); border-radius: 50%; border: 2px solid #fff;
}

.user-profile-card h4 { font-size: 1.1rem; color: var(--primary); margin-bottom: 5px; }
.user-profile-card p { font-size: 0.85rem; color: #777; margin-bottom: 10px; }
.badge-verified {
    background: rgba(16, 196, 92, 0.1); color: var(--secondary);
    padding: 4px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600;
}

/* Navigation */
.dash-nav ul { list-style: none; padding: 10px 0; }
.dash-nav li a {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 25px; color: #555; text-decoration: none; font-weight: 500;
    transition: 0.3s; border-left: 4px solid transparent;
}

.dash-nav li a:hover, .dash-nav li a.active {
    background: #f4fcf7; color: var(--secondary); border-left-color: var(--secondary);
}
.dash-nav li a i { width: 20px; text-align: center; }

.logout-link a { color: #e63946 !important; margin-top: 10px; border-top: 1px solid #eee; }
.logout-link a:hover { background: #fdedef !important; border-left-color: #e63946; }

/* --- MAIN CONTENT --- */

/* Welcome Banner */
.welcome-banner {
    background: linear-gradient(135deg, var(--primary), #003366);
    color: white;
    border-radius: 10px;
    padding: 30px;
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0, 33, 71, 0.2);
}
.banner-text h2 { font-size: 1.8rem; margin-bottom: 5px; }
.banner-text p { opacity: 0.9; font-size: 0.95rem; }
.banner-img img { width: 150px; margin-bottom: -40px; } /* Pop-out effect */

/* Stats Grid */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 30px; }
.stat-card {
    background: white; padding: 20px; border-radius: 10px;
    display: flex; align-items: center; gap: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
.stat-icon {
    width: 50px; height: 50px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.icon-blue { background: #e3f2fd; color: #2196f3; }
.icon-green { background: #e8f5e9; color: #4caf50; }
.icon-orange { background: #fff3e0; color: #ff9800; }

.stat-info h3 { font-size: 1.5rem; color: var(--primary); line-height: 1; }
.stat-info p { font-size: 0.85rem; color: #777; margin: 0; }

/* Section Box */
.section-box {
    background: white; border-radius: 10px; padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03); margin-bottom: 30px;
}
.box-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.box-header h3 { font-size: 1.2rem; color: var(--primary); }
.view-btn { font-size: 0.85rem; color: var(--secondary); font-weight: 600; text-decoration: none; }

/* Active Course Card */
.active-course-card { display: flex; gap: 20px; align-items: center; }
.course-thumb { width: 120px; height: 80px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.course-thumb img { width: 100%; height: 100%; object-fit: cover; }
.course-details { flex: 1; }
.course-details h4 { font-size: 1.1rem; color: var(--primary); margin-bottom: 5px; }
.instructor { font-size: 0.85rem; color: #777; margin-bottom: 15px; }

/* Progress Bar */
.progress-wrapper { width: 100%; }
.progress-info { display: flex; justify-content: space-between; font-size: 0.85rem; font-weight: 600; margin-bottom: 5px; color: var(--primary); }
.progress-bar-bg { width: 100%; height: 8px; background: #eee; border-radius: 10px; overflow: hidden; }
.progress-bar-fill { height: 100%; background: var(--secondary); border-radius: 10px; }

/* Activity List */
.activity-list { list-style: none; padding: 0; }
.activity-list li { display: flex; gap: 15px; padding: 15px 0; border-bottom: 1px solid #eee; }
.activity-list li:last-child { border-bottom: none; }
.act-icon { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 0.9rem; }
.bg-blue { background: #4361ee; } .bg-green { background: #10c45c; } .bg-purple { background: #7209b7; }
.act-details h5 { font-size: 0.95rem; margin-bottom: 2px; color: #333; }
.act-details span { font-size: 0.8rem; color: #999; }

/* --- RESPONSIVE FIX --- */
@media (max-width: 900px) {
    
    .dashboard-layout {
        grid-template-columns: 1fr; /* Layout 1 column */
    }

    /* 1. Sidebar Fix (Sab se Zaroori) */
    .dash-sidebar {
        position: static; /* Sticky hata diya */
        width: 100%;      /* Full width */
        margin-bottom: 20px;
        box-shadow: none; /* Mobile pe shadow hata dein clean look ke liye */
        border: 1px solid #eee;
    }

    /* 2. Mobile Menu Scrollable (Optional but Recommended) */
    /* Is se menu ki list lambi nahi hogi, balkay left-right scroll hogi */
    .dash-nav ul {
        display: flex;
        overflow-x: auto; /* Horizontal Scroll */
        padding-bottom: 5px;
        white-space: nowrap; /* Lines break na hon */
    }

    .dash-nav li a {
        border-left: none; /* Side border hataya */
        border-bottom: 3px solid transparent; /* Bottom border lagaya */
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .dash-nav li a:hover, .dash-nav li a.active {
        border-left-color: transparent;
        border-bottom-color: var(--secondary); /* Active niche show ho */
        background: transparent;
    }

    /* Logout link ko alag rakhne ki zaroorat nahi mobile par */
    .logout-link a {
        margin-top: 0;
        border-top: none;
        color: #e63946;
    }

    /* Baki Mobile Styles... */
    .welcome-banner { flex-direction: column; text-align: center; }
    .stats-grid { grid-template-columns: 1fr; }
    .active-course-card { flex-direction: column; text-align: center; }
    .course-thumb { width: 100%; height: 160px; }
}

/* --- MY COURSES PAGE STYLES --- */

/* Header Row with Tabs */
.content-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.content-header-row h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0;
}

/* Tab Buttons */
.course-tabs {
    display: flex;
    gap: 10px;
    background: #fff;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #eee;
}

.tab-btn {
    background: none;
    border: none;
    padding: 8px 15px;
    font-size: 0.9rem;
    border-radius: 4px;
    cursor: pointer;
    color: #666;
    font-weight: 500;
    transition: 0.3s;
}

.tab-btn.active, .tab-btn:hover {
    background: var(--secondary);
    color: white;
}

/* Dashboard Course Grid */
.dash-courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

/* Dashboard Specific Course Card */
.dash-course-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0 5px 10px rgba(0,0,0,0.03);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.dash-course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.d-card-img {
    height: 160px;
    position: relative;
}

.d-card-img img {
    width: 100%; height: 100%; object-fit: cover;
}

/* Status Tags */
.status-tag {
    position: absolute;
    top: 10px; left: 10px;
    padding: 4px 10px;
    border-radius: 4px;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}
.tag-active { background: var(--secondary); }
.tag-completed { background: #2196f3; }
.tag-pending { background: #999; }

.d-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.d-card-body h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.d-card-body .instructor {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
}

.d-card-footer {
    margin-top: auto;
    padding-top: 15px;
}

.full-width { width: 100%; }

/* Mobile Adjustments for Tabs */
@media (max-width: 600px) {
    .content-header-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .course-tabs { width: 100%; overflow-x: auto; }
}

/* --- CERTIFICATES PAGE STYLES --- */

.cert-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Horizontal Card Structure */
.cert-card {
    background: white;
    border-radius: 10px;
    border: 1px solid #eee;
    display: flex; /* Side by side layout */
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.cert-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

/* Thumbnail Section (Left) */
.cert-thumb {
    width: 250px; /* Fixed width */
    min-height: 180px;
    position: relative;
    background: #f4f4f4;
    overflow: hidden;
    border-right: 1px solid #eee;
}

.cert-thumb img {
    width: 100%; height: 100%; object-fit: cover;
    transition: 0.5s;
}

/* Hover effect on Image */
.cert-thumb .overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 33, 71, 0.6);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: 0.3s;
}
.cert-thumb .overlay i { color: white; font-size: 1.5rem; }
.cert-card:hover .overlay { opacity: 1; }
.cert-card:hover img { transform: scale(1.1); }

/* Details Section (Right) */
.cert-details {
    flex: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Header inside Card */
.cert-header {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 15px;
}

.cert-header h3 { font-size: 1.25rem; color: var(--primary); margin: 0; }

.status-badge {
    padding: 5px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
}
.badge-success { background: #eafbf1; color: var(--success-color); border: 1px solid #c3e6cb; }
.badge-warning { background: #fff8e1; color: var(--warning-color); border: 1px solid #ffe0b2; }

/* Metadata Grid (Date, Grade, etc.) */
.cert-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
    background: #f9f9f9;
    padding: 10px 15px;
    border-radius: 6px;
}

.meta-item { display: flex; flex-direction: column; }
.meta-item span { font-size: 0.75rem; color: #888; text-transform: uppercase; }
.meta-item strong { font-size: 0.95rem; color: #333; }

/* Actions Buttons */
.cert-actions {
    display: flex; gap: 10px; margin-top: auto;
}

.btn-icon { display: inline-flex; align-items: center; gap: 8px; }

/* --- LOCKED STATE STYLES --- */
.cert-card.locked { opacity: 0.8; }
.locked-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem; color: #ccc;
    background: #eee;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .cert-card {
        flex-direction: column; /* Mobile pe image upar, details neechay */
    }
    
    .cert-thumb {
        width: 100%;
        height: 200px;
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .cert-meta-grid {
        grid-template-columns: 1fr; /* Metadata stack ho jaye */
        gap: 10px;
    }
    
    .cert-header { flex-direction: column; gap: 10px; }
    .cert-actions { flex-direction: column; }
    .cert-actions .btn { width: 100%; text-align: center; justify-content: center; }
}

/* --- EDIT PROFILE PAGE STYLES --- */

.edit-profile-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

/* 1. Profile Upload Section */
.profile-upload-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.avatar-wrapper {
    position: relative;
    width: 100px; height: 100px;
}

.avatar-wrapper img {
    width: 100%; height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f4f6f8;
}

.upload-icon {
    position: absolute;
    bottom: 5px; right: 0;
    background: var(--secondary);
    color: white;
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    border: 2px solid white;
    transition: 0.3s;
}

.upload-icon:hover { background: var(--primary); transform: scale(1.1); }

.upload-text h4 { font-size: 1.1rem; color: var(--primary); margin-bottom: 5px; }
.upload-text p { font-size: 0.85rem; color: #888; }


/* 2. Form Grid & Inputs */
.form-section-title {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.divider {
    border: 0; border-top: 1px solid #eee;
    margin: 30px 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 Columns */
    gap: 25px;
}

.input-group label {
    display: block;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
    font-weight: 500;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px; top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.input-with-icon input {
    width: 100%;
    padding: 12px 15px 12px 45px; /* Icon ke liye left padding */
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    outline: none;
    transition: 0.3s;
}

.input-with-icon input:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(16, 196, 92, 0.05);
}

/* Readonly Field Style */
.readonly-field {
    background-color: #f8f9fa;
    cursor: not-allowed;
    color: #777;
    border-color: #eee;
}

/* Full Width Input (Address) */
.full-width-input {
    grid-column: span 2; /* Dono columns cover karega */
}


/* 3. Action Buttons */
.form-actions {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.form-actions .btn {
    padding: 10px 30px;
    font-size: 0.95rem;
}


/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr; /* Mobile pe 1 column */
    }
    
    .full-width-input {
        grid-column: span 1;
    }

    .form-actions {
        flex-direction: column-reverse; /* Mobile pe Save button upar */
    }
    
    .form-actions .btn { width: 100%; }
}

/* --- SUPPORT PAGE STYLES --- */

/* Grid Layout for Support */
.support-grid {
    display: grid;
    grid-template-columns: 1fr 300px; /* Chat Area bara, History choti */
    gap: 25px;
    height: 600px; /* Fixed height taake chat scroll ho sake */
}

/* --- 1. CHAT PANEL --- */
.ticket-chat-panel {
    background: white;
    border-radius: 10px;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Header */
.chat-header {
    padding: 15px 20px;
    background: #f9fbfd;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ticket-info .ticket-id { font-size: 0.8rem; color: #888; display: block; margin-bottom: 2px; }
.ticket-info h4 { font-size: 1rem; color: var(--primary); margin: 0 0 5px 0; }
.ticket-actions .date { font-size: 0.8rem; color: #999; }

/* Chat Body (Scrollable) */
.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Message Bubbles */
.message { display: flex; align-items: flex-end; gap: 10px; max-width: 80%; }
.msg-avatar { width: 35px; height: 35px; border-radius: 50%; object-fit: cover; }

.msg-bubble {
    padding: 12px 15px;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.msg-meta {
    font-size: 0.7rem; margin-top: 5px; opacity: 0.7; display: block; text-align: right;
}

/* User Message (Right Side) */
.msg-user {
    align-self: flex-end;
    flex-direction: row-reverse; /* Avatar right pe */
}
.msg-user .msg-bubble {
    background: var(--primary);
    color: white;
    border-bottom-right-radius: 2px;
}
.msg-user .msg-meta { color: #e0e0e0; }

/* Admin Message (Left Side) */
.msg-admin { align-self: flex-start; }
.msg-admin .msg-bubble {
    background: #f1f1f1;
    color: #333;
    border-bottom-left-radius: 2px;
}

/* Attachment Style */
.msg-attachment {
    background: rgba(255,255,255,0.2);
    padding: 8px; border-radius: 6px;
    display: flex; align-items: center; gap: 8px; margin-top: 8px; cursor: pointer;
}
.msg-user .msg-attachment { border: 1px solid rgba(255,255,255,0.3); }

/* Footer (Input) */
.chat-footer {
    padding: 15px;
    background: #fff;
    border-top: 1px solid #eee;
}

#replyForm {
    display: flex; gap: 10px; align-items: center;
    background: #f4f6f8; padding: 5px 10px; border-radius: 50px; border: 1px solid #eee;
}

.btn-attach, .btn-send {
    background: none; border: none; font-size: 1.2rem; cursor: pointer; padding: 8px; transition: 0.3s;
}
.btn-attach { color: #888; }
.btn-send { color: var(--secondary); margin-left: auto; }
.btn-send:hover { transform: scale(1.1); }

#replyInput {
    flex: 1; background: transparent; border: none; outline: none; padding: 10px; font-size: 0.95rem;
}


/* --- 2. HISTORY PANEL --- */
.ticket-history-panel {
    background: white;
    border-radius: 10px;
    border: 1px solid #eee;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.ticket-history-panel h3 { font-size: 1rem; color: var(--primary); margin-bottom: 15px; border-bottom: 1px solid #eee; padding-bottom: 10px; }

.history-list { overflow-y: auto; flex: 1; }

.history-item {
    padding: 12px;
    border-radius: 8px;
    background: #f9f9f9;
    margin-bottom: 10px;
    cursor: pointer;
    transition: 0.3s;
    border-left: 3px solid transparent;
}

.history-item:hover { background: #f0f0f0; }
.history-item.active { background: #eafbf1; border-left-color: var(--secondary); }

.h-top { display: flex; justify-content: space-between; margin-bottom: 5px; font-size: 0.8rem; color: #888; }
.history-item h5 { margin: 0; font-size: 0.9rem; color: #333; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.history-item p { margin: 3px 0 0; font-size: 0.75rem; color: #999; }

.status-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot-green { background: var(--success-color); }
.dot-orange { background: var(--warning-color); }

/* --- MODAL STYLE --- */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); z-index: 999;
    display: flex; justify-content: center; align-items: center;
}
.modal-card {
    background: white; padding: 30px; border-radius: 10px; width: 500px; max-width: 90%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.close-modal { background: none; border: none; font-size: 1.2rem; cursor: pointer; }

/* Responsive */
@media (max-width: 900px) {
    .support-grid { grid-template-columns: 1fr; height: auto; }
    .ticket-chat-panel { height: 500px; } /* Mobile pe fixed height */
    .ticket-history-panel { height: 300px; order: 2; } /* History neechay */
}

/* --- MODAL & FORM STYLES --- */

/* 1. The Background Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Black dim background */
    z-index: 1000; /* Sab se upar */
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(3px); /* Optional: Background blur effect */
}

/* 2. The White Card */
.modal-card {
    background: white;
    width: 500px;
    max-width: 90%;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    position: relative;
    animation: fadeIn 0.3s ease;
}

/* Animation for smooth opening */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 3. Header (Title & Close Button) */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.modal-header h3 {
    margin: 0;
    color: var(--primary);
    font-size: 1.25rem;
}

.close-modal {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: #999;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: #e63946;
    transform: rotate(90deg);
}

/* 4. Form Inputs Styling inside Modal */
.modal-card .input-group {
    margin-bottom: 20px;
}

.modal-card label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
    font-size: 0.9rem;
}

.modal-card input,
.modal-card select,
.modal-card textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.95rem;
    outline: none;
    transition: 0.3s;
    background: #f9fbfd; /* Halka sa gray background fields ke liye */
    font-family: inherit; /* Font same rahe */
}

.modal-card input:focus,
.modal-card select:focus,
.modal-card textarea:focus {
    border-color: var(--secondary); /* Green border on focus */
    background: #fff;
    box-shadow: 0 0 0 4px rgba(16, 196, 92, 0.05);
}

/* Textarea Resize off */
.modal-card textarea {
    resize: vertical;
}

/* Button Full Width fix */
.full-width {
    width: 100%;
    display: block;
    padding: 12px;
}