body {
    font-family: 'Vazir', sans-serif;
}

#wpbody-content {
    background-color: #1e1e1e;
    color: #fff;
}

.wrap h1 {
    color: #00ff00;
}

.form-table th {
    color: #00ff00;
}

.form-table input[type="checkbox"] {
    appearance: none;
    width: 15px;
    height: 15px;
    background: #333;
    border-radius: 3px;
    position: relative;
}

.form-table input[type="checkbox"]:checked::before {
    content: '';
    width: 7px;
    height: 12px;
    border: 2px solid #00ff00;
    border-top: none;
    border-right: none;
    position: absolute;
    top: 1px;
    left: 4px;
    transform: rotate(-45deg);
    animation: checkmark 0.3s ease;
}

@keyframes checkmark {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.wrap {
    border-radius: 15px;
    backdrop-filter: blur(10px);
    background: rgba(30, 30, 30, 0.8);
    padding: 20px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

p.description {
    color: #bbb;
}
