/**
 * Tourist Tax Calculator - Styles
 * Version: 1.0.0
 */

/* Cart Item Summary */
.ttc-summary {
    margin-top: 10px;
    padding: 10px;
    background: #e7f3ff;
    border-left: 3px solid #0073aa;
    border-radius: 4px;
    font-size: 13px;
}

/* Edit Buttons in Cart */
.ttc-edit-button {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px !important;
    background: #0073aa !important;
    color: white !important;
    text-decoration: none !important;
    border-radius: 4px;
    font-size: 13px;
    transition: background 0.3s;
}

.ttc-edit-button:hover {
    background: #005177 !important;
    color: white !important;
}

.ttc-edit-button.ttc-required {
    background: #d63638 !important;
    animation: pulse 2s infinite;
}

.ttc-edit-button.ttc-required:hover {
    background: #aa2729 !important;
}

/* Lock Icon */
.ttc-locked {
    color: #999;
    font-size: 16px;
    cursor: not-allowed;
}

/* Pulse Animation for Required Button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(214, 54, 56, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(214, 54, 56, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(214, 54, 56, 0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .ttc-summary {
        font-size: 12px;
    }
    
    .ttc-edit-button {
        display: block;
        width: 100%;
        text-align: center;
    }
}
