


.app-body {
    margin-left: 210px !important;
    padding: 20px !important;
    background: #f0f4f4 !important;
    min-height: 100vh !important;
    box-sizing: border-box !important;
}

main {
    display: flex !important;
    gap: 30px !important;
    align-items: flex-start !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
}


.detail-left {
    flex: 0 0 450px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    position: sticky !important; 
    top: 85px !important;
}

.detail-title-top {
    font-size: 3.5rem !important;
    font-family: 'Bangers', cursive, sans-serif !important;
    font-weight: 900 !important;
    color: #0d4a4a !important;
    text-align: center !important;
    width: 100% !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    margin-bottom: 20px !important;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.1) !important;
}


.detail-actions {
    display: flex !important;
    gap: 12px !important;
    margin-top: 5px !important;
}

.btn-back, .btn-delete, .btn-edit {
    flex: 1;
    padding: 12px 20px !important;
    border-radius: 10px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    text-align: center !important;
    font-size: 14px !important;
    transition: all 0.2s !important;
    cursor: pointer !important;
    border: none !important;
}

.btn-back {
    background: #0e6b6b !important; 
    color: white !important;
}

.btn-back:hover {
    background: #15908a !important; 
    transform: translateY(-2px) !important;
}

.btn-delete {
    background: #e94f8b !important;
    color: white !important;
}

.btn-delete:hover {
    background: #d43f77 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(233, 79, 139, 0.3) !important;
}



.detail-right {
    flex: 1;
    display: flex !important;
    flex-direction: column !important; 
    gap: 15px !important;
}


.index-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    width: 100% !important;
}


.detail-card {
    background: rgb(255, 255, 255) !important;
    padding: 10px !important;
    border-radius: 20px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
}

.detail-img {
    width: 100% !important;
    border-radius: 12px !important;
    display: block !important;
    cursor: zoom-in !important;
    transition: transform 0.2s !important;
}

.detail-img:hover {
    transform: scale(1.02) !important;
}


.lightbox-overlay {
    position: fixed !important;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.85) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 2000 !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: zoom-out;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay img {
    max-width: 90% !important;
    max-height: 90% !important;
    border-radius: 10px !important;
    box-shadow: 0 0 30px rgba(0,0,0,0.5) !important;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lightbox-overlay.active img {
    transform: scale(1);
}


.info-box {
    background: #0d4a4a !important;
    color: white !important;
    padding: 25px !important;
    border-radius: 15px !important;
    text-align: center !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
}

.info-value {
    font-size: 3rem !important;
    font-weight: 900 !important;
    color: #ffcc00 !important;
}


.index-card {
    display: block !important; 
    width: 100% !important;
    background: white !important;
    padding: 25px !important;
    border-radius: 15px !important;
    border-left: 10px solid #0d4a4a !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05) !important;
    box-sizing: border-box !important;
}

.index-card p {
    margin: 0 !important;
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: #0d4a4a !important;
}


.detail-actions {
    display: flex !important;
    gap: 12px !important;
    margin-top: 5px !important;
}

