/* General Styles */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}


body {
    font-family: Arial, sans-serif; /* Already set globally */
}
.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
    margin-top: 10px;
    border: 1px solid #dcdcdc;
    color: #757575;
    font-weight: bold;
    background-color: white;
    transition: background-color 0.3s, border-color 0.3s;
}

.btn-google:hover {
    background-color: #f5f5f5;
    border-color: #c1c1c1;
}

.content-wrapper {
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    margin-top: 100px; /* Adjusted to prevent content from overlapping with the fixed header */
}

.GOVPHBtn {
    color: #000000;
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    margin-right: 20px;
    font-size: 18px;
}

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

/* Updated header to be fixed */
header {
    background-color: #f0f0f0;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 12vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 2px -2px gray;
}

.auth-buttons {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.auth-buttons .btn {
    margin-left: 10px;
}

.header-logo img {
    width: 80px;
    margin-right: 15px;
}

.header-title h1 {
    font-size: 24px;
    margin-bottom: 5px;
}

.philippine-time {
    margin-top: 2vh;
    font-size: 14px;
    color: #666;
    margin-right: 20px;
    float: right;
}

nav {
    background-color: #f8f8f8;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-items {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

.navbar-items li {
    position: relative;
}

.navbar-items li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    padding: 5px 10px;
    display: inline-block; /* Ensures the text stays in one line */
    white-space: nowrap;   /* Prevents the text from wrapping */
}

.navbar-items li a:hover {
    background-color: #e0e0e0;
    border-radius: 5px;
}

.search-bar {
    display: flex;
    align-items: center;
    margin-top: 2vh;
    margin-right: 2vh;
}

.search-input {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    outline: none;
}
.search-bar {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.search-bar input[type="text"] {
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-item {
    padding: 10px 15px;
    white-space: nowrap;
    text-decoration: none;
    color: #000;
}

.dropdown-item:hover {
    background-color: #f0f0f0;
}

/* Banner Section */
.banner {
    text-align: left;
    margin: 20px 0;
}

.banner img {
    width: 40%;
    max-height: 25vh;
    object-fit: cover;
    margin-bottom: 1vh;
}

/* Footer Section */
.gov-footer {
    background-color: #f0f0f0;
    padding: 20px 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    text-align: left;
}

.footer-logo {
    opacity: 0.1;
    width: 120px;
}

.footer-title {
    font-weight: bold;
    color: #333;
    font-size: 14px;
    margin-top: 10px;
}

.footer-text {
    color: #666;
    font-size: 12px;
    line-height: 1.5;
    margin: 5px 0;
}

.footer-links a {
    color: #007bff;
    text-decoration: none;
    font-size: 12px;
    line-height: 1.5;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-links {
    margin: 0;
}

/* Login Form Styles */
.login-card {
    width: 400px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card-body {
    padding: 30px;
}

.text-primary {
    font-weight: bold;
}

.text-primary:hover {
    text-decoration: underline;
}

.btn-primary {
    background-color: #3b6de0;
    border-color: #3b6de0;
}

.btn-primary:hover {
    background-color: #2a54b3;
    border-color: #2a54b3;
}
