﻿/* Modal Styles */
.aks-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.aks-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.aks-modal-content {
    position: relative;
    background: white;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1001;
}

.aks-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
}

    .aks-modal-header h2 {
        margin: 0;
        font-size: 1.5rem;
        font-weight: 600;
        color: #111827;
    }

.aks-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s;
}

    .aks-modal-close:hover {
        background: #f3f4f6;
        color: #111827;
    }

.aks-modal-body {
    padding: 24px;
}

.aks-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 16px 24px;
    border-top: 1px solid #e5e7eb;
}

.aks-form-group {
    margin-bottom: 20px;
}

.aks-form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #374151;
}

.aks-required {
    color: #ef4444;
}

.aks-optional {
    color: #6b7280;
    font-weight: 400;
    font-size: 0.875rem;
}

.aks-form-input,
.aks-form-textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

    .aks-form-input:focus,
    .aks-form-textarea:focus {
        outline: none;
        border-color: #3b82f6;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }

.aks-form-textarea {
    resize: vertical;
    min-height: 100px;
}

.aks-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
}

.aks-btn--primary {
    background: #3b82f6;
    color: white;
}

    .aks-btn--primary:hover {
        background: #2563eb;
    }

.aks-btn--secondary {
    background: #f3f4f6;
    color: #374151;
}

    .aks-btn--secondary:hover {
        background: #e5e7eb;
    }

.text-danger {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 4px;
    display: block;
}


.ing-container {
    font-size: 15px;
}

.ing-table {
    font-size: 14.5px;
}

.ing-item__name {
    font-weight: 450;
}
.ing-table__cell {
    padding: 7px 10px;
}

.ing-table__header {
    padding: 7px 10px;
}
@media (max-width: 1024px) {
    .ing-item__flags {
        display: none;
    }

    .ing-item__kroger-info {
        display: none;
    }

    .ing-badge {
        display: none;
    }
}
