/* styles.css */

html, body {
    margin: 0;
    padding: 0;
}

.nav {
    left: 0;
}


/* General styles */
body {
    font-family: 'Roboto', sans-serif;
    margin-top: 5px;
    padding: 0;
    background-color: #999999;
    color: #333;
}

header {
    background-color: #999999;
    color: #fff;
    padding: 20px;
    text-align: center;
}

img {max-width: 256px; margin-bottom: 30px;}

h1 {
    margin: 0;
    font-size: 2em;
}

/* Search bar styles */
#search-bar {
    width: 90%;
    padding: 15px;
    font-size: 16px;
    margin: 1px auto;
    display: block;
    border-radius: 5px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#search-bar:focus {
    outline: none;
    border-color: #000000;
}

/* Search results styles */
#search-results {
    width: 95%;
    margin: 20px auto;
    background-color: #fff;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: left;
}

#search-results ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#search-results li {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

#search-results li:last-child {
    border-bottom: none;
}

.search-result h4 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.search-result p {
    margin: 5px 0 0 0;
    font-size: 14px;
    color: #666;
}

.search-result a {
    text-decoration: none;
    color: #4CAF50;
    display: block;
}

.search-result a:hover {
    text-decoration: underline;
}

/* Additional styling for better visual appeal */
.search-result a:hover h4 {
    color: #4CAF50;
    transition: color 0.3s;
}

.nav {position: fixed; bottom: 0; width: 100%; /* 100% of the body's width */ height: 55px; box-shadow: 0 0 3px rgba(0, 0, 0, 0.2); background-color: #ffffff; display: flex; overflow-x: auto;}

.nav__link {display: flex; flex-direction: column; align-items: center; justify-content: center; flex-grow: 1; min-width: 50px; overflow: hidden; white-space: nowrap; font-family: sans-serif;
    font-size: 13px; color: #444444; text-decoration: none; -webkit-tap-highlight-color: transparent; transition: background-color 0.1s ease-in-out;}

.nav__link:hover {background-color: #eeeeee;}

.nav__link--active {color: #FF0000;}

.nav__icon {font-size: 18px;}

.floating-button {
    position: fixed;
    bottom: 20px;
    z-index: 999;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    font-size: 18px;
}

/* WhatsApp Button */
.left-button {
    left: 20px;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Updates Button */
.right-button {
    right: 20px;
    padding: 12px 20px;
    background-color: #007bff;
    color: white;
    font-weight: bold;
}

a {color: black; font-weight: bold; text-decoration: none;}

.noselect {-webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;}

input, textarea, button, select, a {-webkit-tap-highlight-color: rgba(0,0,0,0);}

a:focus,a:visited,a:active {outline: none;}
