/* My Issues & Disputes - Beautiful Card Design */
.container {
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.header-section {
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.header-section h2 {
    font-size: 1.75rem;
    color: #2c3e50;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
}

.section-header {
    margin-bottom: 1.5rem;
}

.section-header h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 0.95rem;
    margin: 0;
}

/* Issues Grid */
.issues-grid {
    display: grid;
    gap: 1.5rem;
}

/* Beautiful Issue Cards */
.issue-card {
    background: white;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.issue-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.issue-card:hover {
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
    transform: translateY(-4px);
    border-color: #667eea20;
}

.issue-card:hover::before {
    opacity: 1;
}

.dispute-card {
    border-left: 4px solid #e74c3c;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

/* LARGE TITLE - This is what you wanted! */
.issue-header h5 {
    font-size: 1.5rem !important; /* BIG! */
    font-weight: 700 !important;
    color: #2c3e50 !important;
    margin: 1rem 0 0 0 !important;
    line-height: 1.4;
}

/* BIG COLORFUL BADGES! */
.badge {
    padding: 0.6rem 1.2rem !important; /* BIGGER! */
    font-size: 0.9rem !important; /* BIGGER TEXT! */
    font-weight: 600 !important;
    border-radius: 50px !important;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
}

/* Category Badges - BRIGHT COLORS! */
.bg-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
}

.bg-danger {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%) !important;
    color: white !important;
}

.bg-warning {
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%) !important;
    color: #d35400 !important;
}

.bg-info {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%) !important;
    color: white !important;
}

.bg-secondary {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%) !important;
    color: white !important;
}

/* Status Badges */
.bg-success {
    background: linear-gradient(135deg, #55efc4 0%, #00b894 100%) !important;
    color: #00693e !important;
}

/* Priority Badges - EXTRA COLORS! */
.badge.bg-danger {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%) !important;
    color: white !important;
}

.badge.bg-warning.text-dark {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%) !important;
    color: white !important;
}

/* Issue Body */
.issue-body {
    padding: 1.25rem 0;
    border-top: 2px solid #f0f3f7;
    border-bottom: 2px solid #f0f3f7;
    margin: 1.25rem 0;
}

.issue-body p {
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.issue-body .text-muted.small {
    color: #95a5a6;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
}

/* Issue Footer */
.issue-footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 0.5rem;
}

.btn-outline-primary {
    border: 2px solid #667eea;
    color: #667eea;
    background: transparent;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Loading State */
.spinner-border {
    width: 3rem;
    height: 3rem;
}

/* Alert Styles */
.alert {
    border-radius: 12px;
    padding: 1.25rem;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.alert-info {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1565c0;
}

.alert-danger {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    color: #c62828;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .header-section {
        flex-direction: column;
        align-items: stretch !important;
    }

    .issue-header h5 {
        font-size: 1.25rem !important;
    }

    .badge {
        padding: 0.5rem 1rem !important;
        font-size: 0.8rem !important;
    }

    .issue-card {
        padding: 1.25rem;
    }
}
