﻿/* Base Layout */
body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    background: #f4f4f4;
}

/* ✅ Top Green Bar */
.top-green-bar {
    background-color: #006666;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 6px 20px;
    font-size: 14px;
}

.top-left, .top-right {
    display: flex;
    align-items: center;
}

.top-green-bar a {
    color: white;
    text-decoration: none;
    margin-right: 15px;
}

.top-green-bar select {
    padding: 2px 6px;
    border-radius: 4px;
    border: none;
}

.top-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

/* ✅ Main Beige Header */
.white-header {
    background-color: #fdf5e6; /* light beige/golden */
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
}

.left-side {
    display: flex;
    align-items: center;
}

.govt-logo img {
    width: 70px;
    margin-right: 20px;
}

.govt-title h1 {
    margin: 0;
    font-size: 24px;
    color: black;
}

.govt-title h2 {
    margin: 0;
    font-size: 16px;
    color: #666;
}

.right-photo img {
    width: 60px;
    height: auto;
    border-radius: 4px;
    margin-left: 10px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

/* ✅ Navigation */
.navbar {
    background-color: #cc6600;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

    .navbar a {
        color: white;
        padding: 14px 20px;
        text-decoration: none;
        font-weight: bold;
    }

        .navbar a:hover {
            background-color: #ff9900;
        }

/* ✅ Main Layout */
.main-container {
    display: flex;
    padding: 20px;
    justify-content: center;
    gap: 20px;
}

.banner {
    flex: 1;
    margin-right: 20px;
    position: relative;
}

.carousel-inner img {
    border-radius: 10px;
    height: 500px; /* Increased height */
    object-fit: cover;
}

/* ✅ Login Panel */
.right-panel {
    flex: 1.3;
    background-color: white;
    padding: 25px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #006666;
    border-radius: 8px;
    max-width: 400px;
}

    .right-panel h3 {
        margin-top: 0;
        color: #006666;
    }

.inputbox {
    width: 100%;
    padding: 8px;
    margin: 6px 0 12px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.login-btn {
    width: 100%;
    background-color: #006666;
    color: white;
    border: none;
    padding: 10px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
}

    .login-btn:hover {
        background-color: #004d4d;
    }
