﻿/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}

/* Container Layout */
.container {
    display: flex;
    max-width: 1800px;
    margin: 40px auto;
    background: white;
}

/* Sidebar Styles */
.sidebar {
    background: #fff;
    width: 250px;
    padding: 20px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

    .sidebar h3 {
        font-size: 18px;
        color: #00509e;
        text-transform: uppercase;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .sidebar ul {
        list-style: none;
        padding: 0;
    }

        .sidebar ul li {
            padding: 10px 0;
            border-bottom: 1px solid #ddd;
        }

            .sidebar ul li a {
                text-decoration: none;
                color: #333;
                font-size: 16px;
            }

        .sidebar ul .active a {
            font-weight: bold;
            color: #00509e;
            border-bottom: 3px solid #00509e;
        }

/* Main Content */
.content {
    flex: 1;
    padding: 40px;
    background: white;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

    .breadcrumb a {
        text-decoration: none;
        color: #00509e;
    }

    .breadcrumb span {
        font-weight: bold;
    }

/* Headings */
h1 {
    font-size: 28px;
    color: #002d72;
    font-weight: bold;
}

/* Message Section */
.message-section {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-left: 5px solid #00509e;
    border-radius: 5px;
}

    .message-section .heading {
        font-weight: bold;
        font-size: 24px;
        text-decoration: underline;
        text-underline-offset: 5px;
        text-decoration-color: #e59866;
        color: #002d72;
        margin-bottom: 15px;
    }

    .message-section p {
        line-height: 1.6;
        margin-bottom: 10px;
    }

/* ===========================
   📱 MOBILE VIEW (RESPONSIVE)
   =========================== */
@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
        margin: 0;
        width: 100%;
    }

    .sidebar {
        width: 100%;
        padding: 15px;
        text-align: center;
    }

        .sidebar ul {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }

            .sidebar ul li {
                padding: 10px;
                border-bottom: none;
            }

    .content {
        padding: 20px;
    }

    .message-section {
        padding: 15px;
    }

    h1 {
        font-size: 22px;
        text-align: center;
    }

    .breadcrumb {
        text-align: center;
    }

    .message-section .heading {
        font-size: 20px;
        text-align: center;
    }
}
