/* General styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #201d1d;
    line-height: 1.6;
    color: #333;
}

/* Header styles */
header {
    background-color: #ffffff;
    padding: 10px 0;
    border-bottom: 1px solid #808080;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 20px;
}

/* Logo section */
.logo-section img {
    width: 200px;
    height: 80px;
    object-fit: contain;
}

/* Navigation bar */
nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 0;
    margin: 0;
}

nav ul li a {
    text-decoration: none;
    color: #808080;
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #000;
}

.nav-icon i {
    margin-right: 5px;
    font-size: 16px;
    color: #808080;
}

/* Search Box */
.search-box {
    display: none;
    position: absolute;
    top: 85px;
    right: 20px;
    background: white;
    padding: 5px;
    border: 1px solid #000;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.search-box input {
    padding: 8px;
    width: 200px;
    border: 1px solid #000;
    font-size: 14px;
    outline: none;
}

/* Login Form */
.container {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 20px;
    color: #333;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    text-align: left;
    font-size: 14px;
    margin-top: 10px;
    color: #333;
}

input {
    padding: 8px;
    font-size: 14px;
    width: 100%;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

button {
    margin-top: 15px;
    padding: 10px;
    font-size: 16px;
    background-color: #ee7d05;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 3px;
}

button:hover {
    background-color: #ee7d05;
}

.error-message {
    color: red;
    font-size: 14px;
    margin-top: 10px;
}

/* Welcome Message */
.welcome-message {
    text-align: center;
    margin: 30px 0;
    color: white;
    font-size: 22px;
    font-weight: bold;
}

/* Dashboard Layout */
.dashboard-container {
    display: flex;
    max-width: 900px;
    margin: 0 auto 30px;
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

/* Sidebar Buttons */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 200px;
}

.sidebar button {
    width: 100%;
    padding: 10px;
    background-color: #ee7d05;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 3px;
}

.sidebar button:hover {
    background-color: #ee7d05;
}

/* Main Content Area */
.content {
    flex-grow: 1;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
}

/* Milestones Section */
.milestones {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.milestone-item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.status.verified {
    color: green;
    font-weight: bold;
}

.status.completed {
    color: orange;
    font-weight: bold;
}

/* Financial Milestone Section */
.financial-milestone {
    max-width: 900px;
    margin: 20px auto;
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.financial-milestone button {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    font-size: 16px;
    background-color: #ee7d05;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 3px;
}

.financial-milestone button:hover {
    background-color: #ee7d05;
}

/* Supplier Obligations & DTIC Obligations Pages */
.supplier-container {
    max-width: 800px;
    margin: 40px auto;
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Obligation Table */
.obligation-table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

.obligation-row {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

.obligation-col {
    width: 50%;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
}

/* Countdown Timer */
#countdownTimer {
    font-size: 18px;
    font-weight: bold;
    color: red;
}

/* Verification Buttons */
.verification-buttons {
    margin-top: 20px;
}

.verification-buttons button {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    font-size: 16px;
    background-color: #ee7d05;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 3px;
}

.verification-buttons button:hover {
    background-color: #d56a04;
}

/* Notification */
.notification {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 15px;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.notification.show {
    display: block;
    animation: fadeInOut 3s ease-in-out;
}

/* Animation */
@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(10px); }
    10% { opacity: 1; transform: translateY(0); }
    90% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}
