/* padlock-fortune.css */
.pf-widget-wrapper {
    text-align: center;
}

.pf-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 15px 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pf-button:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.pf-button:active {
    transform: scale(0.98);
}

.pf-icon-wrapper {
    display: flex;
    align-items: center;
}

.pf-icon-wrapper svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.pf-message-container {
    margin-top: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-left: 5px solid #ffcc00; /* Subtle accent */
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.pf-message-container.pf-show {
    opacity: 1;
    transform: translateY(0);
}

.pf-message {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    color: #333;
    font-style: italic;
}

/* Shake animation for locked state click (if they already checked in) */
@keyframes pf-shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}

.pf-shake {
    animation: pf-shake 0.4s ease;
}