/* Modal Overlay */
.giga-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

/* Modal Content */
.giga-modal-content {
    position: relative;
    background-color: #fff;
    margin: 10% auto;
    padding: 0;
    width: 90%;
    max-width: 450px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Modal Header */
.giga-modal-header {
    padding: 24px 30px;
    border-bottom: 1px solid #e5e7eb;
}

.giga-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
}

/* Modal Body */
.giga-modal-body {
    padding: 24px 30px;
}

.giga-modal-body p {
    margin: 0;
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
}

/* Modal Footer */
.giga-modal-footer {
    padding: 20px 30px;
    border-top: 1px solid #e5e7eb;
    text-align: right;
}

/* Buttons */
.giga-btn {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    margin-left: 10px;
}

.giga-btn-cancel {
    background-color: #f3f4f6;
    color: #374151;
}

.giga-btn-cancel:hover {
    background-color: #e5e7eb;
}

.giga-btn-confirm {
    background-color: #dc3545;
    color: white;
}

.giga-btn-confirm:hover {
    background-color: #c82333;
}

/* Toast Messages */
.giga-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    font-size: 14px;
    font-weight: 500;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.giga-message-success {
    background-color: #10b981;
    color: white;
}

.giga-message-error {
    background-color: #ef4444;
    color: white;
}
