/* ===== BULK ORDERS SECTION - CLEAN VERSION ===== */
.bulk-orders-section {
    background: linear-gradient(135deg, #e5eaee 0%, #e3e4e6 100%);
    color: rgb(231, 12, 12);
    padding: 4rem 0;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--secondary);
    border-bottom: 3px solid var(--secondary);
}

/* Subtle background pattern only */
.bulk-orders-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(230, 126, 34, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(212, 229, 240, 0.03) 0%, transparent 40%);
    z-index: 1;
}

.bulk-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.bulk-icon {
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.2), rgba(231, 76, 60, 0.15));
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(230, 126, 34, 0.3);
    box-shadow: 0 10px 25px rgba(230, 126, 34, 0.2);
    animation: gentlePulse 3s infinite ease-in-out;
}

@keyframes gentlePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(230, 126, 34, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 30px rgba(230, 126, 34, 0.3);
    }
}

.bulk-icon i {
    color: var(--secondary);
    font-size: 3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.bulk-text {
    flex: 1;
}

.bulk-text h2 {
    color: rgb(7, 1, 1);
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.bulk-text h2 span {
    color: var(--secondary);
    position: relative;
}

.bulk-text h2 span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary);
    opacity: 0.5;
}

.bulk-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    max-width: 700px;
    font-weight: 400;
}

.bulk-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.9rem 1.3rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature:hover {
    background: rgba(230, 126, 34, 0.2);
    transform: translateY(-3px);
    border-color: rgba(230, 126, 34, 0.4);
    box-shadow: 0 6px 16px rgba(230, 126, 34, 0.2);
}

.feature i {
    color: var(--secondary);
    font-size: 1.2rem;
    min-width: 20px;
}

.feature span {
    font-weight: 600;
    font-size: 0.95rem;
    color: rgb(15, 2, 2);
}

.bulk-cta {
    flex-shrink: 0;
    text-align: center;
    min-width: 250px;
}

.btn-large {
    padding: 1.1rem 2.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.35);
    background: linear-gradient(135deg, var(--secondary), #ff8c42);
    border: none;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-large:hover::before {
    left: 100%;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(230, 126, 34, 0.45);
    background: linear-gradient(135deg, #ff8c42, var(--secondary));
    color: white;
}

.btn-large i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-large:hover i {
    transform: translateX(5px);
}

.bulk-cta-note {
    margin-top: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bulk-cta-note:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(230, 126, 34, 0.3);
}

.bulk-cta-note strong {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.05rem;
}

.bulk-cta-note i {
    color: var(--success);
    font-size: 1.1rem;
}

/* Remove blur effects and clean up */
.feature, .bulk-cta-note {
    backdrop-filter: none;
}

/* Simple decorative elements */
.decorative-dots {
    position: absolute;
    right: 10%;
    bottom: 20%;
    z-index: 1;
    opacity: 0.1;
}

.decorative-dots i {
    color: var(--secondary);
    font-size: 2rem;
    margin: 0 5px;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .bulk-content {
        gap: 2.5rem;
    }
    
    .bulk-cta {
        min-width: 220px;
    }
}

@media (max-width: 992px) {
    .bulk-content {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
        padding: 1.5rem;
    }
    
    .bulk-icon {
        width: 100px;
        height: 100px;
    }
    
    .bulk-icon i {
        font-size: 2.5rem;
    }
    
    .bulk-text h2 {
        font-size: 2rem;
    }
    
    .bulk-description {
        font-size: 1.1rem;
    }
    
    .bulk-features {
        justify-content: center;
    }
    
    .bulk-cta {
        min-width: auto;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .bulk-cta-note {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .bulk-orders-section {
        padding: 3rem 0;
        margin-top: 3rem;
    }
    
    .bulk-text h2 {
        font-size: 1.8rem;
    }
    
    .bulk-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .bulk-features {
        gap: 0.8rem;
    }
    
    .feature {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .bulk-orders-section {
        padding: 2.5rem 1rem;
    }
    
    .bulk-content {
        padding: 1rem;
        gap: 2rem;
    }
    
    .bulk-text h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .bulk-features {
        grid-template-columns: 1fr;
        width: 100%;
    }
    
    .feature {
        width: 100%;
        justify-content: center;
    }
    
    .bulk-cta-note {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        padding: 0.8rem;
    }
}

/* Animation for icons on hover */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.feature:hover i {
    animation: bounce 0.5s ease;
}

/* Clear text visibility */
.bulk-text h2,
.bulk-description,
.feature span,
.bulk-cta-note {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.bulk-orders-section {
    border-radius: 15px 15px 0 0; 
    background: 
        /* Red ribbon effect */
        linear-gradient(45deg, 
            transparent 49%,
            rgba(248, 245, 245, 0.959) 49.5%,
            rgba(252, 249, 248, 0.966) 50.5%,
            transparent 51%
        ),
        linear-gradient(-45deg, 
            transparent 49%,
            rgba(208, 253, 246, 0.747) 49.5%,
            rgba(224, 217, 216, 0.788) 50.5%,
            transparent 51%
        ),
        /* Gold base */
        linear-gradient(135deg, 
            #e9eeed 0%,
            #daf0f0 100%
        );
    background-size: 100px 100px, 100px 100px, auto;
}

.bulk-description {
    color: rgba(31, 11, 11, 0.849);
    font-weight: 400;
}

/* ===== BULK PAGE STYLES ===== */
.bulk-page {
    padding: 2rem 0;
}

.bulk-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-bottom: 2px solid var(--border-light);
}

.bulk-header h1 {
    color: var(--primary);
    font-size: 2.8rem;
    margin: 1rem 0 0.5rem;
    font-family: 'Playfair Display', serif;
}

.bulk-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.bulk-badge {
    background: linear-gradient(135deg, var(--secondary), #ff8c42);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(230, 126, 34, 0.3);
}

.bulk-badge i {
    color: white;
    font-size: 2.5rem;
}

/* Form Styles for Modal */
.bulk-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.bulk-form-group {
    margin-bottom: 1.5rem;
}

.bulk-form-group.bulk-full {
    grid-column: 1 / -1;
}

.bulk-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.bulk-form-group input,
.bulk-form-group select,
.bulk-form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.bulk-form-group input:focus,
.bulk-form-group select:focus,
.bulk-form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.bulk-form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.bulk-form-group.required label::after {
    content: ' *';
    color: var(--danger);
}

/* Form Buttons */
.form-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.bulk-submit-btn {
    padding: 0.9rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    min-width: 180px;
}

/* Messages */
.bulk-msg {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.bulk-msg.success {
    background: #e8f5e9;
    color: var(--success);
    border-left: 4px solid var(--success);
}

.bulk-msg.error {
    background: #ffebee;
    color: var(--danger);
    border-left: 4px solid var(--danger);
}

.bulk-msg.info {
    background: #e3f2fd;
    color: var(--accent);
    border-left: 4px solid var(--accent);
}

/* Instruction Note */
.instruction-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.instruction-note i {
    color: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
    .bulk-header h1 {
        font-size: 2.2rem;
    }
    
    .bulk-subtitle {
        font-size: 1.1rem;
    }
    
    .bulk-form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-buttons {
        flex-direction: column;
    }
    
    .bulk-submit-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .bulk-header h1 {
        font-size: 1.8rem;
    }
    
    .bulk-subtitle {
        font-size: 1rem;
    }
    
    .bulk-badge {
        width: 60px;
        height: 60px;
    }
    
    .bulk-badge i {
        font-size: 2rem;
    }
}

/* Update existing modal styles */
.modal-content {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border);
}

.modal-header h2 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.modal-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.help-text {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    display: block;
    line-height: 1.4;
}

/* Make the info section look better */
.info-section {
    margin: 3rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid var(--accent);
}

.info-section h3 {
    color: var(--primary);
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
}

.info-section h3 i {
    color: var(--accent);
}

/* Button Arrow */
.button-arrow {
    margin-top: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.big-button:hover .button-arrow {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.3);
}

.button-arrow i {
    color: white;
    font-size: 1.2rem;
}

/* ===== BULK SEARCH MODAL STYLES ===== */
.bulk-search-section {
    margin-top: 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px solid var(--border);
}

.bulk-search-header {
    text-align: center;
    margin-bottom: 2rem;
}

.bulk-search-header h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.bulk-search-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Search Bar */
.bulk-search-bar {
    max-width: 600px;
    margin: 0 auto 2rem;
    position: relative;
}

.bulk-search-input {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    border: 2px solid var(--border);
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.bulk-search-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.bulk-search-button {
    position: absolute;
    right: 5px;
    top: 5px;
    background: var(--secondary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bulk-search-button:hover {
    background: #d35400;
    transform: scale(1.05);
}

/* Bulk Categories Grid */
.bulk-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.bulk-category-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    cursor: pointer;
}

.bulk-category-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: 0 10px 25px rgba(230, 126, 34, 0.1);
}

.bulk-category-icon {
    background: rgba(230, 126, 34, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.bulk-category-icon i {
    color: var(--secondary);
    font-size: 1.8rem;
}

.bulk-category-card h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.bulk-category-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Selected Items List */
.selected-items-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border);
}

.selected-items-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.selected-items-header h4 {
    color: var(--primary);
    margin: 0;
}

.clear-selection {
    background: none;
    border: none;
    color: var(--danger);
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.selected-items-list {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    border: 2px solid var(--border);
    max-height: 300px;
    overflow-y: auto;
}

.selected-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--border-light);
    transition: background 0.3s ease;
}

.selected-item:hover {
    background: #f8f9fa;
}

.selected-item:last-child {
    border-bottom: none;
}

.item-info h5 {
    margin: 0 0 0.3rem 0;
    color: var(--primary);
}

.item-details {
    display: flex;
    gap: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    background: var(--border);
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: var(--border-dark);
}

.item-remove {
    background: none;
    border: none;
    color: var(--danger);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.item-remove:hover {
    color: #c0392b;
}

/* Modal Content Styles */
.bulk-items-modal .modal-content {
    max-width: 1000px;
    padding: 2rem;
}

.bulk-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    max-height: 500px;
    overflow-y: auto;
    padding: 1rem;
}

.bulk-item-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    cursor: pointer;
}

.bulk-item-card:hover {
    border-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.bulk-item-card.selected {
    border-color: var(--secondary);
    background: rgba(230, 126, 34, 0.05);
}

.item-image {
    width: 100%;
    height: 150px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-image i {
    color: var(--border);
    font-size: 3rem;
}

.bulk-item-card h5 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.item-price {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.item-stock {
    color: var(--success);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.select-item-btn {
    width: 100%;
    padding: 0.7rem;
    background: var(--border);
    border: none;
    border-radius: 6px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.select-item-btn:hover {
    background: var(--border-dark);
}

.select-item-btn.selected {
    background: var(--secondary);
    color: white;
}

.select-item-btn.selected:hover {
    background: #d35400;
}

/* Summary Section */
.bulk-summary {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

.summary-row:last-child {
    border-bottom: none;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
}

.summary-total {
    font-size: 1.3rem;
    color: var(--secondary) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .bulk-items-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .selected-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .item-details {
        justify-content: center;
    }
}

/* bulk js */
.info-box {
    background: #e8f4fc;
    border-left: 4px solid #3498db;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.info-box h3 {
    margin-top: 0;
    color: #2c3e50;
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 25px 0 15px;
}

.table-actions {
    display: flex;
    gap: 10px;
}

.table-actions input, .table-actions select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    min-width: 150px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.admin-table th {
    background: #f8f9fa;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #495057;
    border-bottom: 2px solid #dee2e6;
}

.admin-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e9ecef;
}

.admin-table tr:hover {
    background: #f8f9fa;
}

.category-badge {
    background: #e9ecef;
    color: #495057;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
}

.stock-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

.btn-sm {
    padding: 5px 10px;
    font-size: 0.85rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-edit {
    background: #3498db;
    color: white;
}

.btn-delete {
    background: #e74c3c;
    color: white;
}

.btn-view {
    background: #95a5a6;
    color: white;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.quick-action-btn {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #495057;
    transition: all 0.3s;
    cursor: pointer;
}

.quick-action-btn:hover {
    background: #f8f9fa;
    border-color: #3498db;
    transform: translateY(-2px);
}

.quick-action-btn i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #3498db;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 10px;
    padding: 30px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-header h3 {
    margin: 0;
    color: #2c3e50;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #95a5a6;
    cursor: pointer;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #495057;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.95rem;
}

.form-group textarea {
    resize: vertical;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.header-actions {
    display: flex;
    gap: 10px;
}

.btn-secondary {
    background: #95a5a6;
    color: white;
}

.btn-secondary:hover {
    background: #7f8c8d;
}