/* public/css/style.css */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
}

header {
    background-color: #356e85;
    color: white;
    padding: 1rem;
    text-align: center;
}

main {
    padding: 2rem;
}

footer {
    background-color: #343a40;
    color: white;
    padding: 1rem;
    text-align: center;
    position: fixed;
    width: 100%;
    bottom: 0;
}

h1, h2 {
    /*color: #007bff;*/
}
/* Navbar */
.navbar {
    background-color: #33404b;
}

/*.navbar a {*/
/*    color: #ffffff;*/
/*}*/
/* Brands Form */
.container {
    position: relative; /* Ensure position context */
    width: 100%; /* Adjust as needed */
    /*height: 200px; !* Example height *!*/
    /* background-color: #f0f0f0; */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Black with 50% opacity */
    display: none; /* Initially hidden */
}

.loader-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100; /* Ensure loader appears above overlay */
    display: none; /* Initially hidden */
}

.loader {
    border: 4px solid rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    border-top: 4px solid #000;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading {
    display: block; /* Show overlay when loading */
}
