/* Teaser message styling */
.hsmc-teaser-message {
    margin: 20px 0;
    padding: 20px;
    border-left: 4px solid #ff9900;
    background-color: #fff8e1;
}

.hsmc-limit-reached h3 {
    color: #d63638;
    margin-top: 0;
}

.hsmc-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.hsmc-btn {
    display: inline-block;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hsmc-register {
    background-color: #2271b1;
    color: white;
}

.hsmc-register:hover {
    background-color: #135e96;
    color: white;
}

.hsmc-login {
    background-color: #f0f0f1;
    color: #3c434a;
    border: 1px solid #dcdcde;
}

.hsmc-login:hover {
    background-color: #e6e6e6;
}

/* Popup styling */
.hsmc-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.hsmc-popup {
    background: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hsmc-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #72777c;
}

.hsmc-popup-close:hover {
    color: #d63638;
}

.hsmc-popup h3 {
    margin-top: 0;
    color: #d63638;
}

.hsmc-popup-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .hsmc-actions,
    .hsmc-popup-actions {
        flex-direction: column;
    }
    
    .hsmc-popup {
        padding: 20px;
    }
}
.color-black {
    color: #000 !important;
}