html, body {
    height: 100%;
    margin: 0;
}

.container {
    height: 100%;
}

.navbar-brand img {
    margin-right: 8px;
}

.navbar-brand {
    font-size: 18px;
    font-weight: bold;
    color: #63666a;
}

.navbar-brand:hover {
    text-decoration: none;
    color: #ef5000 !important; /* Add !important here */
}

.nav-link {
    margin-right: 15px;
    font-size: 16px;
    transition: all 0.3s ease-in-out !important; /* Add transition here */
    color: #63666a !important;
}

.nav-link.active {
    font-weight: bold;
    color: #ef5000!important;
}

.nav-link:hover {
    color: #ef5000 !important; /* Add hover color change */
    transform: translateY(-5px) !important; /* Add translation effect */
}

.navbar-toggler {
    border: none;
}

.navbar-item {
    height: 35px;
}

.navbar { 
    padding-top: 10px; /* Adjust this value as needed */ 
    padding-bottom: 10px; /* Adjust this value as needed */ 
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0; /* Remove default body margin */
}

main {
    flex: 1; /* Allows the main content to grow and push the footer down */
}

.regular-text {
    color: #ef5000; /* Orange color */
    font-weight: normal; /* Regular font weight */
    }

.btn-primary:hover {
    background-color: #e03d00 !important; /* Darker shade on hover */
    transform: translateY(-4px); /* Move the button up on hover */
    transition: background-color 0.3s ease, transform 0.5s ease !important;
}
.btn-secondary:hover {
    background-color: #505657;
    transform: translateY(-4px); /* Move the button up on hover */
    transition: background-color 0.3s ease, transform 0.5s ease !important;
}
.btn-success:hover {
    background-color: #505657;
    transform: translateY(-4px); /* Move the button up on hover */
    transition: background-color 0.3s ease, transform 0.5s ease !important;
}
.btn-primary{
    background-color: #ef5000 !important;
    color: #ffffff !important;
    border: 0px;
}
.btn-danger{
    background-color: #63666a !important;
    color: #ffffff !important;
    border: 0px;
}
.btn-danger:hover{
    background-color: #505657;
    transform: translateY(-4px); /* Move the button up on hover */
    transition: background-color 0.3s ease, transform 0.5s ease !important; 
}
.text-center{
    color: #63666a;
}

@media (max-width: 770px) {

    .navbar-text {
        align-content: center;
    }

    .navbar { 
       max-width: auto !important;
    }
}




















