/* ===========================
   SARAL SEVA PREMIUM ORANGE THEME
   =========================== */

/* Global */
body {
    background: #f5f5f7;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #333;
}

/* Premium Card */
.card {
    border-radius: 14px;
    border: none;
    background: #fff;
    padding: 20px;
    box-shadow: 0 6px 22px rgba(0,0,0,0.10);
    transition: all 0.3s ease;
}
.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.14);
}

/* Card Header */
.card-header {
    background: linear-gradient(135deg, #ff8a00, #ff5c00);
    padding: 16px 22px;
    border-bottom: none;
}
.card-header h4 {
    color: #fff;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Input Fields */
.form-control {
    border-radius: 10px;
    padding: 10px 14px;
    border: 1px solid #d4d4d4;
    font-size: 15px;
    transition: 0.2s;
}
.form-control:focus {
    border-color: #ff7a00;
    box-shadow: 0 0 8px rgba(255,122,0,0.4);
}

/* Form Labels */
label {
    font-weight: 600;
    font-size: 14px;
    color: #444;
}

/* Page Title */
.page-title {
    color: #ff6a00;
    font-weight: 800;
    font-size: 26px;
    text-align: center;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

/* Submit Button */
.btn-primary {
    background: linear-gradient(135deg, #ff7f00, #ff5500);
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #e56b00, #e14700);
    transform: translateY(-2px);
}

/* Table */
.table thead {
    background: linear-gradient(135deg, #ff7b00, #ff5500);
    color: #fff;
}
.table th {
    font-weight: 600;
}

/* Status Badges */
.status-badge {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-pending {
    background: #ffe4c4;
    color: #a66200;
}

.status-processing {
    background: #cdeaff;
    color: #0067a3;
}

.status-resolved {
    background: #cbffd7;
    color: #037b28;
}

/* Smooth Animations */
.card, .btn-primary, .form-control {
    transition: 0.3s ease;
}
