
/* Admin Settings Page Styling */

.wrap h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

.form-table th {
    width: 220px;
    font-weight: 600;
    padding-bottom: 12px;
}

.form-table td {
    padding-bottom: 12px;
}

input.regular-text, textarea.large-text, select {
    width: 100%;
    max-width: 500px;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

input[type="checkbox"] {
    transform: scale(1.2);
    margin-right: 8px;
}

textarea.large-text {
    height: 100px;
}

p.description {
    font-size: 13px;
    color: #666;
}

.submit input[type="submit"] {
    background-color: #0073aa;
    border: none;
    border-radius: 6px;
    color: #fff;
    padding: 10px 20px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit input[type="submit"]:hover {
    background-color: #005177;
}

/* Preview Section */
h2 {
    margin-top: 40px;
    font-size: 24px;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

.preview-container {
    background: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 10px;
}

/* Developer Info Section */
.developer-info {
    margin-top: 50px;
    padding: 20px;
    background: #f1f1f1;
    border-radius: 8px;
    font-size: 14px;
}
.developer-info h2 {
    font-size: 20px;
}
.developer-info a {
    color: #0073aa;
}

/* turnstile-badge.css */

.cftpx-turnstile-badge {
    margin-top: 10px;
    font-size: 12px;
    color: #555;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeSlideUp 1s ease-out forwards;
}

.cftpx-turnstile-badge a {
    color: #555;
    text-decoration: underline;
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
