/* Styling untuk tombol Copy */
#rl-copy-btn {
    margin-top: 10px;
    padding: 6px 14px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

#rl-copy-btn:hover {
    background-color: #006799;
}

/* Input URL */
#rl-copy-input {
    width: 400px;
    padding: 6px;
}

/* Container block */
.rl-box {
    margin-top: 20px;
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    width: 520px;
}

/* Tombol Verify */
.rlf-verify-container {
    margin: 20px 0;
    text-align: center;
}

.rlf-verify-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #28a745;
    color: white !important;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: 1px solid #218838;
}

.rlf-verify-button:hover {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Tombol Tengah */
.rlf-middle-container {
    margin: 20px 0;
    text-align: center;
}

.rlf-middle-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ffc107;
    color: #212529 !important;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: 1px solid #e0a800;
}

.rlf-middle-button:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Timer */
#rlf-timer-container, #rlf-bottom-timer-container, #rlf-verify-timer-container {
    margin-top: 10px;
    padding: 10px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    display: inline-block;
}

#rlf-timer, #rlf-bottom-timer, #rlf-verify-timer {
    font-weight: bold;
    color: #007bff;
}

/* Tombol Bawah */
.rlf-bottom-container {
    margin: 20px 0;
    text-align: center;
}

.rlf-bottom-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #dc3545;
    color: white !important;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: 1px solid #c82333;
}

.rlf-bottom-button:hover {
    background-color: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Tombol Random Post (lama - untuk kompatibilitas) */
.rlf-random-post-container {
    margin: 20px 0;
    text-align: center;
}

.rlf-random-post-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #0073aa;
    color: white !important;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: 1px solid #006799;
}

.rlf-random-post-button:hover {
    background-color: #006799;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.rlf-random-post-button:active {
    transform: translateY(0);
}

.rlf-click-effect {
    animation: rlfClickPulse 0.3s ease;
}

@keyframes rlfClickPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }
    50% {
        transform: scale(0.95);
        box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }
}

/* Tombol dinonaktifkan */
.rlf-verify-button:disabled,
.rlf-middle-button:disabled,
.rlf-bottom-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
