#wpcontent {
    padding: 0px;
}

#wpbody {
    display: inline-block;
    width: 100%;
}

#wpfooter {
    display: none;
}

.wrap {
    margin: 0px;
}

.softwearwc-header {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    min-height: 60px;
    background-color: white;
    padding: 0px 20px;
}

.softwearwc-body {
    padding: 0px 20px;
}

.tab-content {
    padding-top: 10px;
}

.remove-button {
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
    color: #fff !important;
    padding: 10px;
}

.button-container {
    margin-bottom: 20px;
}

.button-container {
    margin-bottom: 20px;
}

.softwearwc-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #1c71b9;
    text-align: center;
	vertical-align: middle;
}

.softwearwc-table-header {
    background-color: #1c71b9;
    color: white;
    font-size: 0.875rem;
}

.softwearwc-table-header th {
    width: 25%;
}

.softwearwc-table th, .softwearwc-table td {
    padding: 8px;
}

.softwearwc-table-body tr:nth-child(odd) {
    background-color: #fff;
}
  
.softwearwc-table-body tr:nth-child(even) {
    background-color: #eee;
}

.softwearwc-table-body tr:hover {
    background-color: #ddd;
}

.table-save-button-container {
    margin-top: 10px;
}

.softwearwc-settings-input-field {
    width: 235px;
}

.softwearwc-bold {
    font-weight: bold;
}

.softwearwc-pagination {
    display: flex;
    flex-direction: row;
}

.softwearwc-pagination > .page-item {
    margin-right: 5px;
}


/* Slider checkbox base container */
.switch {
    position: relative;
    display: inline-block;
    width: 40px; /* Reduced from 60px to 40px */
    height: 24px; /* Reduced from 34px to 24px */
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px; /* Adjusted for consistent border radius */
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px; /* Reduced from 26px to 18px */
    width: 18px; /* Reduced from 26px to 18px */
    left: 3px; /* Adjusted from 4px to fit smaller size */
    bottom: 3px; /* Adjusted from 4px to fit smaller size */
    background-color: white;
    transition: .4s;
    border-radius: 50%; /* Ensures the toggle is perfectly round */
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    transform: translateX(18px); /* Adjust translation to match the new width */
}
