.biblesheep-selector {
    margin: 20px 0;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 5px;
}

/* Updated select styles */
.biblesheep-selector select,
.per-page-selector select {
    margin-right: 10px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff !important;
    color: #333 !important;
    -webkit-text-fill-color: #333 !important;
    -webkit-appearance: menulist;
    -moz-appearance: menulist;
    appearance: menulist;
}

.biblesheep-selector button {
    padding: 8px 20px;
    background: #4a5568; /* Updated to match our new grey color */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.biblesheep-selector button:hover {
    background: #2d3748;
}

.bible-content {
    margin: 20px 0;
    line-height: 1.6;
}

.verse {
    margin: 10px 0;
}

.verse sup {
    color: #666;
    margin-right: 5px;
}

.highlighted-verse {
    background: #fff3cd;
    padding: 10px;
    border-radius: 4px;
}

/* Elementor compatibility styles */
.elementor-widget-container .biblesheep-wrapper {
    width: 100%;
    max-width: 100%;
}

.elementor-widget-container .bible-content {
    width: 100%;
    max-width: 100%;
}

.elementor-widget-container .verse {
    font-family: inherit;
    line-height: inherit;
}

.elementor-widget-container .verse sup {
    font-size: 0.75em;
}

/* Add mobile styles */
@media (max-width: 768px) {
    .biblesheep-selector select,
    .per-page-selector select {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
        background-color: #fff !important;
        color: #333 !important;
        -webkit-text-fill-color: #333 !important;
    }
}

.references-toggle {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background: #4a5568;
    color: white;
    border: none;
    line-height: 1;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.2s;
    font-size: 20px;
}

.references-toggle:hover {
    background: #2d3748;
}

/* Icon for the references button */
.references-toggle .icon {
    font-size: 24px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .references-toggle {
        width: 44px;
        height: 44px;
        bottom: 15px;
        left: 15px;
        font-size: 18px;
    }
  }
