/* Admin Panel Tabs */
.webellio-emergency-contact-button-tabs {
    display: flex;
    border-bottom: 2px solid #ccc;
    margin-bottom: 20px;
}

.webellio-emergency-contact-button-tabs button {
    background: none;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    color: #555;
    transition: all 0.3s ease;
}

.webellio-emergency-contact-button-tabs button.active {
    border-bottom: 2px solid #0073aa;
    color: #0073aa;
    font-weight: bold;
}

.webellio-emergency-contact-button-tab-content {
    display: none;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.webellio-emergency-contact-button-tab-content.active {
    display: block;
}

/* Form Styles */
.webellio-emergency-contact-button-form-table th {
    width: 200px;
    font-weight: 500;
}

.webellio-emergency-contact-button-form-table input[type="text"],
.webellio-emergency-contact-button-form-table input[type="email"],
.webellio-emergency-contact-button-form-table input[type="color"],
.webellio-emergency-contact-button-form-table textarea {
    width: 100%;
    max-width: 400px;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.webellio-emergency-contact-button-form-table .description {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
}

/* Toggle Switch */
.webellio-emergency-contact-button-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.webellio-emergency-contact-button-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.webellio-emergency-contact-button-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.webellio-emergency-contact-button-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .webellio-emergency-contact-button-slider {
    background-color: #0073aa;
}

input:checked + .webellio-emergency-contact-button-slider:before {
    transform: translateX(26px);
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 782px) {
    .webellio-emergency-contact-button-form-table th,
    .webellio-emergency-contact-button-form-table td {
        display: block;
        width: 100%;
    }

    .webellio-emergency-contact-button-form-table input[type="text"],
    .webellio-emergency-contact-button-form-table input[type="email"],
    .webellio-emergency-contact-button-form-table input[type="color"] {
        max-width: 100%;
    }
}
