.notifyme.action.primary {
    background: #000 !important;
    border-radius: 8px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.notifyme.action.primary svg {
    display: inline-block;
}

.notifyme-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.notifyme-container {
    width: 600px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    position: relative;
    text-align: center;
    animation: fadeIn .25s ease;
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.notifyme-container h2 {
    font-weight: normal;
}
.notifyme-container img {
    width: 300px;
}

.notifyme-close {
    position: absolute;
    right: 10px;
    top: 10px;
    border: none;
    background: none;
    font-size: 22px;
    cursor: pointer;
    color: #000;
}

.notifyme-tabs {
    display: flex;
    margin: 15px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    overflow: hidden;
}

.notifyme-tabs .tab-btn {
    width: 50%;
    padding: 12px;
    border: none;
    cursor: pointer;
    background: #fff;
    color: #000;
    transition: all 0.3s ease;
}

.notifyme-tabs .tab-btn.single-tab {
    width: 100%;
}

.tab-btn.active {
    background: #000;
    color: #fff;
}

.tab-btn:hover:not(.active) {
    background: #f5f5f5;
}

.notifyme-tab-content input {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.notifyme-submit {
    width: 100%;
    padding: 12px;
    border: none;
    cursor: pointer;
    background: #000;
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.notifyme-submit:hover {
    background: #333;
}

body.no-scroll {
    overflow: hidden;
}

/* Mobile Responsive Styles */
@media only screen and (max-width: 768px) {
    .notifyme-container {
        width: 95%;
        max-width: 95%;
        padding: 15px;
        margin: 10px;
        border-radius: 8px;
    }
    
    .notifyme-container h2 {
        font-size: 18px;
        margin: 10px 0;
    }

    .notifyme-container img {
        width: 180px;
    }
    
    .notifyme-close {
        right: 8px;
        top: 8px;
        font-size: 20px;
        padding: 5px;
    }
    
    .notifyme-tabs .tab-btn {
        padding: 10px 8px;
        font-size: 13px;
    }
    
    .notifyme-tab-content input {
        padding: 10px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .notifyme-submit {
        padding: 14px 12px;
        font-size: 16px;
        margin-top: 20px;
    }
}

@media only screen and (max-width: 480px) {
    .notifyme-container {
        width: 98%;
        max-width: 98%;
        padding: 12px;
        margin: 5px;
    }
    
    .notifyme-container h2 {
        font-size: 16px;
        margin: 8px 0;
    }
    
    .notifyme-description {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .notifyme-tabs {
        margin: 12px 0;
    }
    
    .notifyme-tabs .tab-btn {
        padding: 8px 6px;
        font-size: 12px;
    }
    
    .notifyme-tab-content input {
        padding: 8px;
        font-size: 16px;
    }
    
    .notifyme-submit {
        padding: 12px;
        font-size: 14px;
    }
    
    .notifyme-close {
        right: 5px;
        top: 5px;
        font-size: 18px;
    }
}

@media only screen and (max-width: 320px) {
    .notifyme-container {
        padding: 10px;
    }
    
    .notifyme-container h2 {
        font-size: 14px;
    }
    
    .notifyme-description {
        font-size: 12px;
    }
    
    .notifyme-tabs .tab-btn {
        padding: 6px 4px;
        font-size: 11px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
