/* CSS Document */
table.woocommerce-product-attributes.shop_attributes tbody tr th {
	vertical-align: top;
}

/* Email validation styles */
.email-validation-message {
    display: none;
    margin: 10px 0;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.email-validation-message.error {
    background-color: #ffebee;
    color: #c62828;
    border-left: 4px solid #c62828;
}

.email-validation-message.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border-left: 4px solid #2e7d32;
}

.email-validation-message.info {
    background-color: #e3f2fd;
    color: #1565c0;
    border-left: 4px solid #1565c0;
}

/* Disabled button styling */
button[name="register"]:disabled {
    cursor: not-allowed !important;
    background-color: #cccccc !important;
}

/* Loading state */
.loading-email-check:after {
    content: '...';
    animation: dots 1.5s steps(4, end) infinite;
}
body.archive.error404 .insight_core_breadcrumb li:last-child,
#riddle_answer_field {
    display: none;
}
@keyframes dots {
    0%, 20% { content: ''; }
    40% { content: '.'; }
    60% { content: '..'; }
    80%, 100% { content: '...'; }
}