/* Global Styles */
body {
  font-family: 'Arial', sans-serif;
  background-color: #f4f7f6;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Container */
.container {
  margin-top: 40px;
  margin-bottom: 40px;
}

/* Navbar */
.navbar-custom {
  background-color: #ffffff;
  border-bottom: 4px solid #1D4E89; /* Greek blue */
  padding-top: 10px;
  padding-bottom: 10px;
}

.navbar-brand img {
  max-height: 50px;
}

.navbar-nav .nav-link {
  color: #1D4E89;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 2px;
  transition: all 0.2s ease-in-out;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background-color: #cc0000;
  color: #fff !important;
  text-decoration: none;
}

/* Special right nav items (login/signup/dashboard/logout) */
.navbar-nav-right .nav-link {
  background-color: #1D4E89;
  color: #fff !important;
  border-radius: 3px;
  padding: 6px 14px;
  margin-left: 6px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.navbar-nav-right .nav-link:hover {
  background-color: #cc0000;
  color: #fff;
}

/* Buttons */
.btn-primary {
  background-color: #1D4E89 !important;
  border-color: #1D4E89 !important;
  color: white !important;
  font-weight: 500;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #cc0000 !important;
  border-color: #cc0000 !important;
}

/* Premium Account button - outlined */
.btn-outline-secondary {
  border: 2px solid #1D4E89;
  color: #1D4E89;
  font-weight: 500;
  background-color: transparent;
  transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
  background-color: #cc0000;
  color: white;
  border-color: #cc0000;
}

/* Form */
input[type="url"],
input[type="email"],
input[type="password"],
input[type="text"] {
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ccc;
  width: 100%;
  background-color: #f9f9f9;
  transition: border-color 0.3s ease;
}

input:focus {
  border-color: #1D4E89;
  outline: none;
}

/* Footer */
footer {
  background-color: #1D4E89;
  color: white;
  text-align: center;
  padding: 30px 10px;
  font-family: 'Georgia', serif;
  border-top: 5px solid #004080;
}

footer p {
  margin: 0;
  font-size: 1rem;
}

footer p.copyright {
  color: #ff0000;
  font-weight: bold;
  font-size: 1.1rem;
}

footer a {
  color: white;
  text-decoration: underline;
  margin: 0 10px;
  font-size: 0.95rem;
}

footer a:hover {
  color: #ffd700;
  text-decoration: none;
}

/* Cookie Consent */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(29, 78, 137, 0.95); /* Greek blue */
  color: white;
  padding: 15px;
  text-align: center;
  display: none;
  z-index: 9999;
}

.cookie-consent-banner.show {
  display: block;
}

.cookie-consent-banner a {
  color: #ffd700;
  text-decoration: underline;
}

.cookie-consent-banner button {
  margin-left: 15px;
  background-color: #cc0000;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

.cookie-consent-banner button:hover {
  background-color: #a80000;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .navbar-nav {
    text-align: center;
  }

  .navbar-nav-right .nav-link {
    margin: 5px 0;
    display: block;
  }

  .container {
    padding: 20px;
    width: 95%;
  }
}
