/*
#content-container {
    padding: 20px;
}
*/

#grp-shipping-config {
    padding-bottom: 30px;
}

#grp-shipping-zone {
    font-family: 'Poppins', sans-serif;
    max-width: 90%;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    background-color: #47767E3D;
}

#grp-shipping-config {
    text-align: left;
}

#grp-shipping-config .shipping-zone, .shipping-region, .shipping-method {
    border: 1px solid #47767E;
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
    background: #ffffff;
}
#grp-shipping-config input, select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: Poppins, sans-serif;
    font-size: 13px;
}

.regions select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: Poppins, sans-serif;
    font-size: 13px;
    height: auto;
}

#grp-shipping-config button {
    background-color: #47767E;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    margin-top: 10px;;
    cursor: pointer;
    transition: background-color 0.3sease, transform 0.3sease;
}

#grp-shipping-config .button-container button {
    background: #47767E;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
}

#grp-shipping-config button:hover { background: #36585F; }

#grp-shipping-config .remove { background: #f51313; }

body.dark-theme .delete-zone { background: #f51313; }

#grp-shipping-config h2,
#grp-shipping-zone h2 { 
    color: #424242; 
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

#grp-shipping-config .button-container {
    display: flex;
    justify-content:space-around; /* Distribui os botões */
    align-items: center;
    gap: 10px; /* Espaço entre os botões */
}

body.dark-theme #grp-shipping-config h2,
body.dark-theme #grp-shipping-zone h2 {
    color: #fff;
}

.delete-zone {
    background-color: #f51313;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    font-family: 'Poppins', sans-serif !important;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3sease, transform 0.3sease;
    margin-left: 5px;
}

@keyframes pulse {
    0% { background-color: #47767E; }
    50% { background-color: #f35b04; }
    100% { background-color: #47767E; }
}

.pulsate {
    animation: pulse 1s infinite;
}

.flat-rate-name {
    display: none !important;
}

#shipping-zones .shipping-zone {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    max-width: 90%;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    border-radius: 10px;
    background-color: #47767E3D;
}


.remove-tag {
    color: red; 
    font-weight: bold; 
    cursor: pointer;
    padding-right: 10px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 20px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

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

.slider:before {
    position: absolute;
    content: "";
    height: 13px;
    width: 13px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #4CAF50;
}

input:checked + .slider:before {
    transform: translateX(13px);
}

body.dark-theme #shipping-status-body td {
    color: #edf6f9;
}

body.dark-theme #shipping-status-body td .grpms-badge {
    background-color: #edf6f9;
}