/* dashboard.css - Modernes Styling für VFR Tours */

/* Admin Actions Section */
.admin-actions {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    margin: 2rem 0;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.08);
}

.admin-actions h2 {
    color: #1a3a5f;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.action-group {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(52, 152, 219, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.action-group:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: rgba(52, 152, 219, 0.2);
}

.group-title {
    color: #1a3a5f;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Enhanced Button Styles */
.btn {
    transition: all 0.3s ease;
    border-radius: 8px;
    font-weight: 600;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Gradient Button Hover Effects */
.btn[style*="linear-gradient"] {
    position: relative;
    overflow: hidden;
}

.btn[style*="linear-gradient"]:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn[style*="linear-gradient"]:hover:before {
    left: 100%;
}

/* Basis-Layout */
.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    color: #333;
}

/* Stats Overview */
.stats-overview {
    margin-bottom: 2rem;
}

.stats-overview .stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.stats-overview .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #28a745, #17a2b8, #ffc107);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stats-overview .stat-card:hover::before {
    transform: scaleX(1);
}

.stats-overview .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.stats-overview .stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.stats-overview .stat-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a3a5f;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.stats-overview .stat-content p {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Enhanced Hero Section */
.admin-hero {
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
    position: relative;
    overflow: hidden;
}

.admin-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.admin-hero .container {
    position: relative;
    z-index: 2;
}

.admin-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.admin-hero p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    margin-bottom: 0;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}


.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Admin/Moderator Buttons */
.py-4 {
    margin: 1.5rem 0;
}

.btn-primary, .btn-secondary, .btn-warning, .btn-info, .btn-success {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: none;
    margin: 0.5rem;
    text-decoration: none;
    color: white;
}

.btn-primary {
    background-color: #007bff;
}

.btn-secondary {
    background-color: #6c757d;
}

.btn-warning {
    background-color: #ffc107;
}

.btn-info {
    background-color: #17a2b8;
}

.btn-success {
    background-color: #28a745;
}

.btn-primary:hover, .btn-secondary:hover, .btn-warning:hover, .btn-info:hover, .btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Statistik-Bereich */
.stats-section {
    margin: 3rem 0;
}

.stats-section h2 {
    color: #1a3a5f;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* Minimal Stat Cards */
.stat-card {
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.stat-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: #f8f9fa;
    border-radius: 50%;
    font-size: 2rem;
    color: #007bff;
    border: 1px solid #dee2e6;
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.stat-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #1a3a5f;
    text-align: center;
}

.stat-content p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: #555;
    margin: 0;
    text-align: center;
}

/* Countries and Medals Sections */
.py-4 {
    margin: 2rem 0;
}

.py-4 h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #1a3a5f;
    margin-bottom: 1rem;
}

/* Medals Display */
.d-flex.flex-wrap.gap-3 {
    justify-content: center;
}

.badge.bg-warning.text-dark {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(52, 152, 219, 0.1);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.08);
    transition: all 0.3s ease;
    margin: 0.5rem;
    min-width: 100px;
}

.badge.bg-warning.text-dark:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(52, 152, 219, 0.3);
}

/* Touren-Bereich */
.tours-section {
    margin: 4rem 0;
}

.tours-section h2 {
    color: #1a3a5f;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2rem;
}

.section-header p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Modern Tour Cards with Enhanced Effects */
.tour-card {
    background: rgba(248, 249, 250, 0.85); /* Lighter gray background for better contrast */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(52, 152, 219, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.08);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tour-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #3498db, #e74c3c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(52, 152, 219, 0.3);
}

.tour-card:hover::before {
    transform: scaleX(1);
}

.tour-image-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.tour-image-link:hover {
    text-decoration: none;
    color: inherit;
}

.tour-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: all 0.3s ease;
}

.tour-image-link:hover .tour-image {
    transform: scale(1.05);
}

.tour-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(26, 58, 95, 0.8);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.tour-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tour-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #1a3a5f;
    transition: color 0.3s ease;
}

.tour-card:hover .tour-content h3 {
    color: #e74c3c;
}

.tour-description {
    font-family: 'Open Sans', sans-serif;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
    flex-grow: 1;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.tour-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem;
    background: linear-gradient(135deg, #3498db 0%, #1a3a5f 100%);
    color: white;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
    border: none;
    cursor: pointer;
}

.tour-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
    background: linear-gradient(135deg, #ff6b6b 0%, #e74c3c 100%);
}

.tour-btn i {
    transition: transform 0.3s ease;
}

.tour-btn:hover i {
    transform: translateX(3px);
}

/* No Tours Message */
.no-tours {
    text-align: center;
    padding: 3rem;
    color: #666;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(52, 152, 219, 0.1);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.08);
}

.no-tours i {
    margin-bottom: 1rem;
}

.no-tours h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #1a3a5f;
    margin-bottom: 0.5rem;
}

/* Leaderboard Section */
.py-4:last-of-type {
    margin: 4rem 0;
}

.py-4:last-of-type h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #1a3a5f;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

/* Submissions Grid */
.submissions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.submission-card {
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.submission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #007bff;
}

.submission-card .card-header {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 1rem;
    border-bottom: none;
}

.pilot-info {
    display: flex;
    align-items: center;
}

.pilot-info h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.submission-card .card-body {
    padding: 1.5rem;
}

.flight-details h6,
.route-info h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #1a3a5f;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Tours Management Grid */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.tour-management-card {
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.tour-management-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #007bff;
}

.tour-management-card .card-header {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 1rem;
    border-bottom: none;
}

.tour-header-info {
    display: flex;
    align-items: center;
}

.tour-header-info h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tour-status-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tour-management-card .card-body {
    padding: 1.5rem;
}

.tour-description {
    font-family: 'Open Sans', sans-serif;
    color: #666;
    line-height: 1.6;
}

.tour-stats {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
}

.stat-item i {
    width: 20px;
}

.tour-management-card .card-footer {
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
    padding: 1rem;
}

.tour-management-card .card-footer .btn-group {
    gap: 0.5rem;
}

/* Legs Grid */
.legs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.leg-card {
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.leg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #17a2b8;
}

.leg-card .card-header {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: white;
    padding: 1rem;
    border-bottom: none;
}

.leg-header {
    display: flex;
    align-items: center;
}

.leg-header h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.leg-card .card-body {
    padding: 1.5rem;
}

.leg-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
}

.leg-description {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.5;
}

.leg-card .card-footer {
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
    padding: 1rem;
}

/* Minimal Table Styling */
.table-responsive {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #dee2e6;
}

.table {
    background: #ffffff;
    margin-bottom: 0;
}

.table th {
    background: #f8f9fa;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 1rem;
    border: 1px solid #dee2e6;
}

.table td {
    padding: 1rem;
    vertical-align: middle;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    color: #555;
    border: 1px solid #dee2e6;
}

.table-hover tbody tr:hover {
    background-color: #f8f9fa;
}


/* Admin Actions Responsive */
@media (max-width: 768px) {
    .admin-actions {
        padding: 1rem;
        margin: 1rem 0;
    }

    .admin-actions h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .action-group {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .group-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .admin-hero {
        padding: 2rem 1rem;
    }

    .admin-hero h1 {
        font-size: 2rem;
    }

    .admin-hero p {
        font-size: 1rem;
    }

    .admin-actions {
        padding: 0.5rem;
    }

    .action-group {
        padding: 1rem;
    }

    .group-title {
        font-size: 1rem;
    }
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .dashboard-container {
        padding: 1rem;
    }

    .dashboard-hero {
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .stats-overview .row {
        gap: 1rem;
    }

    .stats-overview .col-md-3 {
        margin-bottom: 1rem;
    }

    .stats-overview .stat-card {
        padding: 1.5rem;
    }

    .stats-overview .stat-content h3 {
        font-size: 2rem;
    }

    .submissions-grid,
    .tours-grid,
    .legs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .submission-card,
    .tour-management-card,
    .leg-card {
        margin-bottom: 1rem;
    }

    .card-actions {
        flex-direction: column;
    }

    .card-actions .btn {
        margin-bottom: 0.5rem;
    }

    .tour-stats {
        flex-direction: column;
        gap: 0.5rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-content h3 {
        font-size: 1.8rem;
    }

    .tours-grid {
        grid-template-columns: 1fr;
    }

    .tour-image {
        height: 180px;
    }

    .tour-content {
        padding: 1.25rem;
    }

    .tour-content h3 {
        font-size: 1.2rem;
    }

    .tour-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .dashboard-hero {
        padding: 1.5rem 0.5rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .stats-section h2, .tours-section h2, .py-4:last-of-type h2 {
        font-size: 1.5rem;
    }
    
    .stat-card {
        padding: 1.25rem;
    }
    
    .stat-content h3 {
        font-size: 1.5rem;
    }
    
    .tour-btn {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
}

/* Changelog Popup Styles */
.changelog-content h1,
.changelog-content h2,
.changelog-content h3,
.changelog-content h4,
.changelog-content h5,
.changelog-content h6 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.changelog-content ul,
.changelog-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.changelog-content li {
    margin-bottom: 0.25rem;
}

.changelog-content p {
    margin-bottom: 1rem;
}

.changelog-content code {
    background-color: #f8f9fa;
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    font-size: 0.875em;
}

/* Notification Popup Styles */
.notification-content h1,
.notification-content h2,
.notification-content h3,
.notification-content h4,
.notification-content h5,
.notification-content h6 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.notification-content ul,
.notification-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.notification-content li {
    margin-bottom: 0.25rem;
}

.notification-content p {
    margin-bottom: 1rem;
}

.notification-content code {
    background-color: #f8f9fa;
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    font-size: 0.875em;
}