/* Call Request Styles */
.call-request-container {
    max-width: 1400px;
    margin: 20px auto;
    padding: 0 20px;
    font-family: sans-serif;
}

.call-request-wrapper {
    background: linear-gradient(135deg, #181b30 0%, #181b30 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid #08fcfc4d;
}

.call-request-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #08fcfc4d;
}

.call-request-header-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #08fcfc 0%, #0053ff 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: 0 5px 15px #08fcfc5e;
}

.call-request-header-icon i {
    font-size: 32px;
    color: #fff;
}

.call-request-header-content h1 {
    color: #fff;
    margin: 0;
    font-size: 28px;
    font-weight: 700;
}

.call-request-header-content p {
    color: #aaa;
    margin: 5px 0 0 0;
    font-size: 14px;
}

.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-danger {
    background: #08fcfc36;
    border: 1px solid #08fcfc;
    color: #ff6b7a;
}

.alert-success {
    background: rgba(46, 125, 50, 0.2);
    border: 1px solid #2e7d32;
    color: #66bb6a;
}

.call-request-form-section {
    margin-bottom: 30px;
}

.form-card, .list-card {
    background: #111531;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid #08fcfc36;
}

.form-card-header, .list-card-header {
    background: linear-gradient(135deg, #08fcfc 0%, #0053ff 100%);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-card-header i, .list-card-header i {
    font-size: 22px;
    color: #fff;
}

.form-card-header h3, .list-card-header h3 {
    margin: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.form-card form {
    padding: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.form-group label i {
    color: #08fcfc;
    font-size: 16px;
}

.required {
    color: #ff4757;
    font-weight: 700;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background: #181b30;
    border: 2px solid #08fcfc4d;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: 'Inter';
}

.form-control:focus {
    outline: none;
    border-color: #08fcfc;
    box-shadow: 0 0 0 3px #08fcfc36;
}

.form-control::placeholder {
    color: #666;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
    font-family: sans-serif;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #08fcfc 0%, #0053ff 100%);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px #08fcfc7a;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 15px;
    font-size: 16px;
}

.call-request-list-section {
    margin-top: 30px;
}

.list-card {
    margin-bottom: 0;
}

.no-requests {
    padding: 60px 30px;
    text-align: center;
}

.no-requests-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #181b30 0%, #181b30 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid #08fcfc4d;
}

.no-requests-icon i {
    font-size: 40px;
    color: #08fcfc;
}

.no-requests h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
}

.no-requests p {
    color: #888;
    font-size: 14px;
}

.requests-table-wrapper {
    overflow-x: auto;
    padding: 20px;
}

.requests-table {
    width: 100%;
    border-collapse: collapse;
}

.requests-table thead {
    background: linear-gradient(135deg, #08fcfc 0%, #0053ff 100%);
}

.requests-table th {
    padding: 15px;
    text-align: left;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.requests-table td {
    padding: 15px;
    border-top: 1px solid #08fcfc36;
    color: #fff;
    font-size: 14px;
    background: #181b30;
}

.requests-table tbody tr {
    transition: background 0.2s ease;
}

.requests-table tbody tr:hover {
    background: #08fcfc17;
}

.date-cell {
    font-size: 13px;
    color: #aaa;
}

.subject-cell strong {
    display: block;
    margin-bottom: 5px;
    color: #fff;
}

.subject-cell small {
    display: block;
    color: #888;
    font-size: 12px;
    line-height: 1.4;
}

.priority-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.priority-normal {
    background: rgba(46, 125, 50, 0.2);
    color: #66bb6a;
    border: 1px solid #2e7d32;
}

.priority-high {
    background: rgba(255, 152, 0, 0.2);
    color: #ff9800;
    border: 1px solid #f57c00;
}

.priority-urgent {
    background: #08fcfc36;
    color: #08fcfc;
    border: 1px solid #08fcfc;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-pending {
    background: rgba(255, 152, 0, 0.2);
    color: #ff9800;
    border: 1px solid #f57c00;
}

.status-called {
    background: rgba(46, 125, 50, 0.2);
    color: #66bb6a;
    border: 1px solid #2e7d32;
}

.status-cancelled {
    background: rgba(97, 97, 97, 0.2);
    color: #9e9e9e;
    border: 1px solid #616161;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
}

.btn-danger {
    background: linear-gradient(135deg, #08fcfc 0%, #0053ff 100%);
    color: #fff;
}

.btn-danger:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px #08fcfc7a;
}

.btn-info {
    background: linear-gradient(135deg, #424242 0%, #212121 100%);
    color: #fff;
    border: 1px solid #08fcfc4d;
}

.btn-info:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px #08fcfc4d;
}

.btn-cancel {
    white-space: nowrap;
}

/* SweetAlert2 Custom Styles */
.swal2-popup {
    background: linear-gradient(135deg, #181b30 0%, #181b30 100%) !important;
    border: 2px solid #08fcfc5e !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 40px #08fcfc4d !important;
}

.swal2-title {
    color: #fff !important;
    font-size: 24px !important;
    font-weight: 700 !important;
}

.swal2-html-container {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
}

.swal2-html-container p {
    margin: 10px 0 !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

.swal2-html-container strong {
    color: #08fcfc !important;
    font-weight: 600 !important;
}

.swal2-confirm {
    background: linear-gradient(135deg, #08fcfc 0%, #0053ff 100%) !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 12px 30px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px #08fcfc5e !important;
    transition: all 0.3s ease !important;
}

.swal2-confirm:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px #08fcfc7a !important;
}

.swal2-cancel {
    background: linear-gradient(135deg, #424242 0%, #212121 100%) !important;
    border: 1px solid #08fcfc4d !important;
    border-radius: 8px !important;
    padding: 12px 30px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s ease !important;
}

.swal2-cancel:hover {
    transform: translateY(-2px) !important;
    background: linear-gradient(135deg, #525252 0%, #313131 100%) !important;
}

.swal2-icon.swal2-success {
    border-color: #2e7d32 !important;
}

.swal2-icon.swal2-success [class^='swal2-success-line'] {
    background-color: #2e7d32 !important;
}

.swal2-icon.swal2-success .swal2-success-ring {
    border-color: rgba(46, 125, 50, 0.3) !important;
}

.swal2-icon.swal2-error {
    border-color: #08fcfc !important;
}

.swal2-icon.swal2-error [class^='swal2-x-mark-line'] {
    background-color: #08fcfc !important;
}

.swal2-icon.swal2-warning {
    border-color: #ff9800 !important;
    color: #ff9800 !important;
}

.swal2-icon.swal2-info {
    border-color: #08fcfc !important;
    color: #08fcfc !important;
}

.swal2-icon.swal2-question {
    border-color: #08fcfc !important;
    color: #08fcfc !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .call-request-wrapper {
        padding: 20px;
    }
    
    .call-request-header {
        flex-direction: column;
        text-align: center;
    }
    
    .call-request-header-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .form-card form {
        padding: 20px;
    }
    
    .requests-table-wrapper {
        padding: 10px;
    }
    
    .requests-table {
        font-size: 12px;
    }
    
    .requests-table th,
    .requests-table td {
        padding: 10px 8px;
    }
    
    .swal2-popup {
        width: 90% !important;
        padding: 20px !important;
    }
}

