/* Login page styles */
.container {
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 16px;
}

.container > div {
    max-width: 500px;
    width: 100%;
}

[id="prs-login-warning"] {
    color: red;
    font-weight: bold;
}

form {
    border: 3px solid #f1f1f1;
}

[id="login-form"] input:not([type="checkbox"]) {
    border: 1px solid #ccc;
    box-sizing: border-box;
    display: inline-block;
    height: 40px;
    margin: 8px 0;
    padding: 12px 20px;
    width: 100%;
}

button {
    background-color: #4CAF50;
    border: none;
    color: white;
    cursor: pointer;
    margin: 8px 0;
    padding: 14px 20px;
    width: 100%;
}

button:hover {
    opacity: 0.8;
}

.prs-status {
    color: #e94f39
}

.prs-list-table-title {
    font-size: 45px;
    text-align: center;
}

.prs-list-table-title-wrapper {
    align-items: baseline;
    display: flex;
    justify-content: center;
}

/* Support-btn page styles */
.wrapper-support {
    font-size: 16px;
}

/* The switch - the box around the slider */
[id="prs-plugin-table"] .btn-box {
    display: inline-block;
    padding: 10px;
}

[id="prs-plugin-table"] .switch {
    display: inline-block;
    height: 17px;
    margin-left: 5px;
    position: relative;
    width: 45px;
}

/* Hide default HTML checkbox */
[id="prs-plugin-table"] .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
[id="prs-plugin-table"] .slider {
    background-color: #ccc;
    cursor: pointer;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    transition: .4s;
    -webkit-transition: .4s;
}

[id="prs-plugin-table"] .slider:before {
    background-color: white;
    content: "";
    position: absolute;
    left: 2px;
    bottom: 1px;
    transition: .4s;
    height: 15px;
    width: 15px;
    -webkit-transition: .4s;
}

[id="prs-plugin-table"] input:checked + .slider {
    background-color: #e94f39;
}

[id="prs-plugin-table"] input:focus + .slider {
    box-shadow: 0 0 1px #e94f39;
}

[id="prs-plugin-table"] input:checked + .slider:before {
    transform: translateX(26px);
    -ms-transform: translateX(26px);
    -webkit-transform: translateX(26px);
}

/* Rounded sliders */
[id="prs-plugin-table"] .slider.round {
    border-radius: 17px;
}

[id="prs-plugin-table"] .slider.round:before {
    border-radius: 50%;
}