/* Integrated Widget Styles */
.integrated-push-mobile-widget {
    background: #faf4e6;
    border: 2px solid #e6d4a8;
    border-radius: 10px;
    padding: 15px;
    margin: 10px 0;
    box-shadow: 0 4px 15px rgba(93, 64, 55, 0.1);
}

.integrated-header {
    text-align: center;
    margin-bottom: 15px;
}

.integrated-header h3 {
    margin: 0 0 5px 0;
    color: #5d4037;
    font-size: 16px;
}

.integrated-header p {
    margin: 0;
    color: #8d6e63;
    font-size: 13px;
}

.integration-steps {
    margin-bottom: 15px;
}

.integration-step {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid #e6d4a8;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.integration-step.completed {
    background: rgba(129, 199, 132, 0.1);
    border-color: #81c784;
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.step-number {
    background: #f3e6bb;
    color: #5d4037;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    margin-right: 8px;
}

.step-header h4 {
    margin: 0;
    color: #5d4037;
    font-size: 13px;
    font-weight: 600;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.integrated-mobile-input {
    padding: 10px 12px;
    border: 1px solid #d7b98a;
    border-radius: 6px;
    background: white;
    color: #5d4037;
    font-size: 14px;
    transition: border-color 0.3s;
}

.integrated-mobile-input:focus {
    outline: none;
    border-color: #bcaaa4;
    box-shadow: 0 0 0 2px rgba(188, 170, 164, 0.2);
}

.integrated-push-btn,
.integrated-complete-btn {
    padding: 10px 15px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.integrated-push-btn {
    background: #ffb74d;
    color: #5d4037;
}

.integrated-push-btn:hover {
    background: #ffa726;
}

.integrated-complete-btn {
    background: #a5d6a7;
    color: #2e7d32;
}

.integrated-complete-btn:disabled {
    background: #e0e0e0;
    color: #9e9e9e;
    cursor: not-allowed;
}

.integrated-complete-btn.enabled {
    background: #66bb6a;
    color: white;
}

.integrated-complete-btn.enabled:hover {
    background: #4caf50;
}

.integrated-complete-btn.completed {
    background: #4caf50;
    color: white;
}

.step-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #8d6e63;
}

.status-icon {
    font-size: 14px;
}

.integrated-message {
    margin: 10px 0;
}

.message {
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 12px;
    text-align: center;
}

.message.success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.message.error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.message.warning {
    background: #fff3e0;
    color: #ef6c00;
    border: 1px solid #ffcc80;
}

.integration-features {
    display: flex;
    justify-content: space-around;
    padding-top: 12px;
    border-top: 1px solid rgba(141, 110, 99, 0.2);
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.feature-icon {
    font-size: 16px;
}

.feature-text {
    font-size: 10px;
    color: #8d6e63;
    text-align: center;
}

/* Basic subscription button */
.web-push-subscribe-btn {
    background: #f3e6bb;
    color: #5d4037;
    padding: 12px 24px;
    border: 2px solid #d7b98a;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.web-push-subscribe-btn:hover {
    background: #e6d4a8;
    border-color: #bcaaa4;
}

/* Responsive design */
@media (max-width: 480px) {
    .integrated-push-mobile-widget {
        padding: 12px;
        margin: 8px 0;
    }
    
    .integrated-header h3 {
        font-size: 15px;
    }
    
    .integrated-header p {
        font-size: 12px;
    }
    
    .integration-step {
        padding: 10px;
    }
    
    .step-header h4 {
        font-size: 12px;
    }
    
    .integrated-mobile-input,
    .integrated-push-btn,
    .integrated-complete-btn {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .integration-features {
        padding-top: 10px;
    }
    
    .feature-icon {
        font-size: 14px;
    }
    
    .feature-text {
        font-size: 9px;
    }
}

/* OneSignal notification prompt customization */
.onesignal-slidedown-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}