/* General Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

p {
    margin-bottom: 8px;
  }

a:link {
	color: #333;
    text-decoration: underline;
}

a:hover {
    font-style: bold;
    color: #ffffff;
    background-color: #9dc9f8;
}

/*a:visited {
	color: #333;
}*/

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Color for in-progress info */
.inprogress-text {
  color: #777978;
  font-style: italic;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 0px;
}

/* Navbar */
.navbar {
    background: #f4f4f4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1.5rem;
    border-bottom: 20px solid #0056b3;
    /*position:fixed;
    top:0;*/
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #002d5b;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Hero Section */
.hero {
    background: #002d5b;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    margin-top: 10px;
}

.hero .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0px;

}

/* Layout */
.main-layout {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

/* Content */
.content {
    background: #fff;
    padding: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.content h2 {
    margin: 0px 0 10px;
    color: #002d5b;
    font-size: 1.1rem;
}

.content h3 {
    margin: 0px 0 0px;
    color: #0469d4;
    font-size: 0.95rem;
}

/* Info block */
.meta-info {
    background: #eef4f9;
    padding: 18px;
    border-left: 5px solid #0469d4;
    margin-bottom: 0px;
    font-size: 1rem;
}

/* Button */
.btn {
    display: inline-block;
    background: #0056b3;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border: none;
    margin-top: 1px;
    cursor: pointer;
    font-size: 0.85rem;
    border-radius: 10px;
	font-weight: bold;         /* Note: 'bold' is used with font-weight, not font-style */
}

/* Hover State - Changes the whole button background */
.btn:hover {
    background-color: #9dc9f8; /* The lighter blue you requested */
    color: #ffffff;            /* Keeps text white on hover */
    font-weight: bold;         /* Note: 'bold' is used with font-weight, not font-style */
}

/* Sidebar */
.sidebar-widget {
    background: #fff;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 10px;
    font-size: 0.8rem;
}

.sidebar-widget h3 {
    border-bottom: 4px solid #0056b3;
    padding-bottom: 0px;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.sidebar-widget ul {
    list-style: none;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .main-layout {
        grid-template-columns: 1fr;
    }
}
