.navbar-custom {
    background-color: #333;
    /* Dark background color */
    display: flex;
    padding: 20px;
    justify-content: space-between;
    /* Space between left and right items */
    align-items: center;
}

.navbar-custom .navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-custom .navbar-nav .active .nav-link{
    color:orange !important;
}
.navbar-custom .navbar-brand h1 {
    margin: 0;
    font-size: 1.5rem;
    /* Adjust the size as needed */
    color: #fff;
    /* White text color for the title */
}

.navbar-custom .navbar-brand img {
    width: 50px;
    /* Adjust size as needed */
    height: 50px;
    /* Adjust size as needed */
    margin-left: 15px;
    /* Space between title and favicon */
}

.navbar-custom .navbar-nav {
    display: flex;
    justify-content: center;
    /* Center the nav items */
    flex-grow: 1;
}

.navbar-custom .navbar-nav .nav-link {
    color: #fff;
    /* White text color for links */
    margin: 0 15px;
    /* Space between nav items */
}

.navbar-custom .navbar-nav .nav-link:hover {
    color: #ffb74d;
    /* Highlight color on hover */
}

.navbar-custom .navbar-toggler {
    border: none;
}

.navbar-custom .navbar-toggler-icon {
    background-image: url('data:image/svg+xml;base64,...');
    /* Use a base64 encoded SVG or specify a URL for the icon */
}

.total {
    color: orange;
    text-align: center;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    /* Adjust according to your footer height */
    background-color: #333;
    /* Dark background color */
    text-align: center;
    line-height: 60px;
    /* Centers text vertically */
    z-index: 1000;
    /* Ensure it appears above other content */
}

footer .text-center {
    margin-top: 15px;
    /* Adjust margin as needed */
    margin-bottom: 15px;
    color: white !important;
    /* Adjust margin as needed */
}

footer a {
    color: yellow;
    /* Link color */
    text-decoration: none;
}

footer a:visited {
    color: yellow;
    /* Link color */
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.card-settings {
    text-align: center;
    background-color: silver;
   padding: 10px;
    color: black;
    justify-content: center;
}
.card-settings div {
  margin: 10px;
}
body {
    overflow-x: hidden;
}
.setting-box {
    display: flex;
    flex-direction: row;
    background-color: rgb(107, 103, 103);
    border-radius: 8px; /* Optional: add rounded corners */
    padding: 2px; /* Optional: add some padding */
    align-items: center;
}

/* Styling for .label-main */
.label-main {
    font-weight: 900;
    background-color: #ffb74d;
    color: white; /* Contrast text color */
    padding: 10px; /* Padding for better spacing */
    border-radius: 8px; /* Rounded corners for the label */
 text-align: center;

}

/* Styling for .settings-controls */
.settings-controls {
    display: flex;
    flex-direction: row; /* Arrange controls in a row */
    justify-content: center; /* Center controls horizontally */
    align-items: center; /* Center controls vertically */
    gap: 5px; /* Space between controls */
}



/* General Styling */
input[type="text"], 
select, 
input[type="button"] {
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
}

/* Styling for Select Element */
select {
    background-color: #ffffff;
    color: #333;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

select:hover, 
select:focus {
    border-color: #ffb74d; /* Accent color */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

/* Styling for Input Type Text */
input[type="text"] {
    background-color: #f9f9f9;
    color: #333;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

input[type="text"]:focus {
    border-color: #ffb74d; /* Accent color */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Styling for Input Type Button */
input[type="button"] {
    background-color: #ffb74d;
    color: #fff;
 
    cursor: pointer;
    font-weight: bold;
    padding: 12px 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

input[type="button"]:hover {
    background-color: #e6892f; /* Slightly darker shade for hover effect */
    border-color: #e6892f;
}



input[type="button"]:disabled {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
    box-shadow: none;
}


#emojiButton {
    font-size: 16px;
    cursor: pointer;
    border: none;
    background: transparent;
}
.main-emoji-container input{
    border: none;
    box-shadow: none;
    background: transparent;
    border-left: 1px solid silver;
    border-radius: 0px;
}
.emoji-popup {
    display: none; /* Hidden by default */
    position: absolute;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    padding: 10px;
    max-width: 300px;
    text-align: center;
}

.emoji-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.emoji {
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.2s;
}

.emoji:hover {
    transform: scale(1.2);
}

.main-emoji-container {
    display: flex;
    align-items: center;
    background-color: white; /* White background for the container */
    border: 1px solid #ddd; /* Light border to define the container */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}
