/* General Reset and Box Sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #f8f9fa;
    color: #212529;
    line-height: 1.5;
}

/* Container */
.meetimely-container {
    max-width: 960px;
    margin: 20px auto;
    padding: 15px;
}

/* Card Styling */
.meetimely-registration-card {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

/* Card Body */
.meetimely-card-body {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
/* Column Styling */
.meetimely-col-md-4 {
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
}

@media (max-width: 768px) {
    .meetimely-col-md-4 {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* Typography */
p.meetimely-lead {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #495057;
}

/* Form Group */
.meetimely-form-group {
    margin-bottom: 1rem;
}

.meetimely-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.meetimely-form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
}

.meetimely-form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.meetimely-slot-list {
    max-height: 350px;
    overflow-y: auto;
}
/* Slots Area */
.meetimely-slots-area .meetimely-list-group {
    width: 100%;
    height: auto;
    list-style: none;
    padding: 0;
    margin: 0;
    border-radius: 0.25rem;
    background-color: #fff;
}

/* List Group Item */
.meetimely-slots-area .meetimely-list-group li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-bottom: 1px solid #dee2e6;
    color: #495057;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.meetimely-slots-area .meetimely-list-group li:last-child {
    border-bottom: none;
}

/* Radio Button Styling */
.meetimely-slots-area .meetimely-list-group input[type="radio"] {
    margin: 0;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    cursor: pointer;
}

/* Text Styling */
.meetimely-slots-area .meetimely-list-group p {
    margin: 0;
    flex-grow: 1;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
}

/* Disabled List Item */
.meetimely-slots-area .meetimely-list-group .meetimely-disabled {
    background-color: #e9ecef;
    color: #6c757d;
    pointer-events: none;
}

/* Hover Effect */
.meetimely-slots-area .meetimely-list-group li:hover:not(.meetimely-disabled) {
    background-color: #f8f9fa;
    color: #212529;
}

/* Active State */
.meetimely-slots-area .meetimely-list-group li.meetimely-active {
    background-color: #007bff;
    color: #fff;
    font-weight: bold;
}

/* User Area */
.meetimely-user-area input {
    margin-bottom: 1rem;
}

/* Add a red asterisk (*) after input fields with the meetimely-required class */

.meetimely-user-area input:last-of-type {
    margin-bottom: 0;
}

.meetimely-user-area textarea {
    margin-bottom: 1rem;
    min-height: 100px;
}

/* Buttons */
.meetimely-btn {
    display: inline-block;
    font-weight: 400;
    color: #fff;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    background-color: #007bff;
    border: 1px solid #007bff;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.meetimely-btn:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.meetimely-btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    border-radius: 0.2rem;
}

.meetimely-float-end {
    float: right;
}

/* Spacing Utilities */
.meetimely-mt-3 {
    margin-top: 1rem !important;
}

.meetimely-mb-3 {
    margin-bottom: 1rem !important;
}

/* Responsive Utility */
@media (max-width: 576px) {
    .meetimely-card-body {
        gap: 15px;
    }
}

/* Utility Classes */
.meetimely-d-flex {
    display: flex;
}

.meetimely-justify-content-between {
    justify-content: space-between;
}

.meetimely-align-items-center {
    align-items: center;
}

.meetimely-d-hidden {
    display: none;
}

.meetimely-d-block {
    display: block;
}

/* Loader */
.meetimely-loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin .5s linear infinite;
    margin: 0 auto;
}

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