.selected {
    background-color: #007bff; /* Change the background color to highlight the selected item */
    color: #fff; /* Change the text color for better contrast */
    cursor: pointer; /* Change cursor to indicate interactivity */
}

.btn-primary {
    background-color: #007bff;
    color: #fff;
}

.cookie-overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f8f9fa;
    padding: 20px 0;
    z-index: 1000;
}

.register-button .container {
    max-width: 960px;
}

.cookie-overlay .container {
    max-width: 960px;
}

.cookie-overlay .btn {
    background-color: #007bff;
    border-color: #007bff;
}

.cookie-overlay .btn:hover {
    background-color: #0069d9;
    border-color: #0062cc;
}

.cookie-overlay {
    display: none;
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure the body takes at least the full height of the viewport */
}

main {
    flex: 1; /* Make the main content area take the remaining vertical space */
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #f0f0f0;
    position: relative;
    bottom: 0;
    width: 100%;
}



.form-group label,
.form-group input {
    margin-right: 15px; /* Adjusted margin value */
}

.green-label {
    color: green;
}

.red-label {
    color: red;
}

.bold-label {
    font-weight: bold;
}

.custom-card-body {
    padding-top: 5px; /* Adjust the top padding as needed */
    padding-bottom: 5px; /* Adjust the bottom padding as needed */

}

.no-padding {
    padding: 0;
}

.no-padding p {
    padding: 0;
}

.no-padding-right {
    padding-right: 0;
}

.like-btn {
    height: 25px;
    font-size: 12px;
    text-align: center;
}

.like-text {
    font-size: 12px;
    text-align: left;
}

.comment-time-text {
    font-size: 8px;
    text-align: left;
}
.comment-data-text {
    font-size: 12px;
    text-align: left;
}

.comment-border {
    border: 1px solid #ced4da; /* Add your desired border properties */
    padding: 10px; /* Add padding if needed */
}

.comment-count-decoration {
    text-decoration: underline; /* Add your desired text decoration */
    cursor: pointer; /* Add your desired cursor style */
    color: red;
}

/* Style the dropdown button */
.dropbtn {
    background-color: #4CAF50;
    color: white;
    padding: 12px;
    font-size: 12px;
    border: none;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
    background-color: #3e8e41;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: #3e8e41;
}

/* Style for the share button */
.share-button {
    background-color: #25D366; /* WhatsApp green */
    color: white;
    padding: 10px 10px;
    font-size: 15px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    position: fixed;
    bottom: 10px;
    left: 80%;
    transform: translateX(-50%);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Hover effect for the share button */
.share-button:hover {
    background-color: #128C7E; /* Darker shade of WhatsApp green */
}

/* Styling the container */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    max-width: 300px;
    border: 2px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

/* Styling labels to look more like buttons */
.radio-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 5px;
    background: white;
    border: 1px solid #ccc;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

/* Highlight on hover */
.radio-group label:hover {
    background-color: #e0f7fa;
    border-color: #007bff;
}


/* Center the buttons */
.toggle-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}



.btn[disabled] {
    background-color: green;  /* Gray background */
    border-color: #6c757d;      /* Gray border */
    color: white;               /* White text */
    cursor: not-allowed;        /* Makes it look unclickable */
}

.btn[disabled]:hover {
    background-color: green;  /* Keeps the gray color on hover */
    border-color: #6c757d;      /* Keeps the gray border on hover */
}