.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.dev-input {
    width: 100%;
    background-color: #050505;
    border: 1px solid #1a1a1a;
    color: #ffffff;
    padding: 12px 16px;
    font-size: 0.9rem;
    border-radius: 4px;
    outline: none;
    transition: all 0.3s ease;
    margin-top: 5px;
    margin-bottom: 10px;
}

.dev-input:focus {
    border-color: #5865F2;
    background-color: #090909;
}

.mod-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #020202;
    padding: 12px 16px;
    border: 1px solid #111111;
    border-radius: 4px;
    margin-bottom: 10px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #222;
    transition: .3s;
    border-radius: 24px;
    border: 1px solid #333;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: #888;
    transition: .3s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #23a55a;
    border-color: #23a55a;
}

input:checked + .slider:before {
    transform: translateX(20px);
    background-color: #fff;
}