
.massresizer-wrap {
    padding-top: 20px;
}

.massresizer-logo {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.mass-container {
    background-color: #D5E7EB;
    padding: 30px;
    border-radius: 12px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    font-family: "Segoe UI", Tahoma, Geneva, sans-serif;
    font-size: 1em;
    transition: box-shadow 0.3s ease;
}

.mass-container:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.mass-container h1 {
    font-size: 1.7em;
}

.mass-container h2 {
    font-size: 1.2em;
}

.mass-title {
    text-align: center;
    font-size: 1.8em;
    color: #333333;
    margin-bottom: 20px;
    font-weight: 600;
}

.mass-alltable {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
}

.mass-row th,
.mass-row td {
    padding: 8px 8px;
}

.mass-row:hover {
    background: linear-gradient(
        to right,
        rgba(249, 249, 249, 0) 0%,
        rgba(249, 249, 249, 0.3) 100%
    );
}

.mass-th-title {
    color: #333333;
    padding-right: 10px;
    text-align: right;
    font-weight: bold;
    vertical-align: top;
    width: 50%;
}


.mass-th-title .description {
    margin: 4px 0 0;
    font-weight: normal;
    font-size: 0.9em;
    color: #555555;
}

.massresizer-wrap .description {
    margin-top: 4px;
}

.mass-divider th,
.mass-divider td {
    border-bottom: 1px solid #D03441;
}

.mass-divider + .mass-row th,
.mass-divider + .mass-row td {
    padding-top: 16px;
}

.mass-online-title td {
    text-align: center;
    padding: 10px 0 20px;
    font-size: 1.2em;
    color: #333333;
    font-weight: 600;
}

.mass-disabled input,
.mass-disabled select {
    opacity: 0.4;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.conditional-row.mass-disabled {
    transition: opacity 0.5s ease-in-out;
}

.mass-switch-container {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.mass-switch-container input {
    opacity: 0;
    width: 0;
    height: 0;
}

.mass-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #CF3541; /* off */
    transition: 0.4s;
    border-radius: 24px;
}

.mass-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: #FFFFFF;
    transition: 0.4s;
    border-radius: 50%;
}

.mass-switch-container input:checked + .mass-slider {
    background-color: #F4A52A; /* on */
}

.mass-switch-container input:checked + .mass-slider:before {
    transform: translateX(26px);
}

.mass-resizer-settings .submit {
    text-align: center;
    margin-top: 20px;
}

.mass-resizer-settings input[type="submit"] {
    background: linear-gradient(45deg, #F4A52A, #D03441);
    color: #FFFFFF;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

.mass-resizer-settings input[type="submit"]:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, #F4A52A, #D03441);
}