/* styles.css */

:root {
    
    --main: #fdfcfc;
    --sec: #154674;
    --font: Helvetica;
  }

  /* Header and footer styles */
header, footer {
    /* background-color: var(--main); /* Header and footer background color */
    color: var(--main); /* Text color */
    background-color: #e1e5e8;
    padding: 5px 0; /* Add padding */
    border: 1px solid var(--sec);
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 10px 0; /* Adjust padding as needed */
    text-align: center;
}

body, html {
    height: 90%; /*adjust objects on page vertically*/
}

  .event-button {
    background-color: var(--main); /* Background color of the button */
    border: 1px solid var(--sec); /* Border color of the button */
    color: var(--sec); /* Text color of the button */
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease; /* Smooth transition effect for color changes */
    position: relative;
    height: 100%;
    padding: 12px 20px; /* Padding inside the button */
    text-align: left; /* Text alignment */
    display: flex; /* Use flexbox layout */
    align-items: center; /* Align items vertically */
    font-size: 16px; /* Font size of the text */
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1); /* Shadow effect */
}

.event-button:hover {
    background-color: var(--sec); /* Background color of the button on hover */
    color: var(--main); /* Text color of the button on hover */
}

.event-button:hover + .divider {
    border-left-color: var(--main); /* Change color of divider to sec on button:hover */
}
.divider {
    border-left: 1px solid var(--sec); /* Normal state color */
    height: 100%;
    margin-left: 10px;
    margin-right: 10px;
}

.card {
    border: none;
}

.logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
}

.logo {
    max-width: 25%;
    margin-right: 10px;
    border-radius: 5px;
}

.embassy-text {
    font-size: 15px;
    /* font-weight: bold; */
    color: var(--sec);
    line-height: 1.2; 
    font-family: var(--font);
}

.footer-text {
    font-size: 10px;
    color: var(--sec);
}

.add-event-btn {
    margin-left: auto; /* Move button to the right */
    background-color: #4c6e8d; /* Background color for add-event-btn */
    transition: background-color 0.3s ease; /* Transition effect for hover */
}

.add-event-btn:hover {
    background-color: #479eef; /* Hover background color for add-event-btn */
}

.title {
    text-align: center;
    margin-bottom: 0; /* Remove margin bottom for the title */
    color: var(--sec);
    font-family:var(--font);
}

.button-size {
    width: 90px;  
    height: auto;  
    font-size: 14px;
    text-align: center;
}

.button-size-action {
    width: 55px; 
    font-size: 10px;
    text-align: center;
}

.nav-item {
    background-color: var(--main);
    /* border: 1px solid var(--sec); */
    color: var(--sec);
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.nav-item:hover {
    background-color: #b7d6f3; /* Header and footer background color */
    color: var(--main); /* Text color */
    border-radius: 5px;
}


