body {
    background-color: #f0f0f0;
}

.section-box {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.country-dropdown {
    width: 100%;
}

.lead-list {
    margin-top: 40px;
}

.lead-list h3 {
    margin-bottom: 20px;
}

.voice-note {
    margin-bottom: 20px;
}

/* Grid container for lead summaries */
.lead-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Individual lead bubble */
.lead-bubble {
    background-color: #ffffff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.lead-bubble.selected {
    border-color: #007bff;
}

/*
.lead-bubble:hover {
    transform: translateY(-5px);
}*/

body {
    background-color: #f0f0f0;
}

button.btn-primary, button.btn-secondary {
    margin-right: 10px;
}

.voice-note-wrapper:first-of-type {
    margin-top: 20px;
}

.voice-note-wrapper {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.voice-note-wrapper audio {
    margin-right: 10px;
}

.voice-note-wrapper button {
    background: none;
    border: none;
    color: red;
    font-size: 16px;
    cursor: pointer;
}

/* Ensure dropdowns are properly aligned */
.form-group label {
    display: block; /* Ensures label appears above the dropdown */
}
/*
.form-group select {
    display: block;
    width: 100%;
    margin-top: 10px;
}*/

/* Auto-resize comments field */
textarea {
    resize: none;
    min-height: 60px;
    overflow: hidden;
}

#backBtn, #submitBtn {
    margin-bottom: 20px; /* Adjust the value as needed */
}

.star-rating i {
    font-size: 24px;
    cursor: pointer;
    color: #ccc; /* This is the default color for unfilled stars */
}

.star-rating i.fas {
    color: gold; /* This color will apply to filled stars */
}

/* Ensure the wrapper has a width defined */
.dropdown-wrapper {
    position: relative;
    width: 100%; /* Ensure it takes full width */
}

/* Select2 dropdown customization */
.select2-container {
    width: 100% !important; /* Ensure container takes up the full width */
}

.select2-dropdown {
    position: absolute !important;
    width: 100% !important; /* Ensure dropdown takes the full width of the parent */
}

/* Ensure full width on mobile */
@media (max-width: 768px) {
    .select2-dropdown {
        width: 100% !important;
    }
}
