/* ACCESSIBLE VERSION - WCAG AA Compliant */
/* Min contrast ratio: 4.5:1 for body text, 3:1 for large text */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background: #0a0a0a;
    color: #e8e8e8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    line-height: 1.6;
}

::selection {
    background: #c5a059;
    color: #000;
}

/* Reduced vignette for better readability */
.vignette {
    position: fixed;
    inset: 0;
    background: radial-gradient(
        circle,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
    pointer-events: none;
    z-index: 5;
}
.noise {
    position: fixed;
    inset: 0;
    opacity: 0.02;
    pointer-events: none;
    z-index: 9999;
    background-image: url("https://www.transparenttextures.com/patterns/stardust.png");
}

/* Header - Carousel Page */
.header {
    text-align: center;
    padding: 3rem 2rem 2rem;
    position: relative;
    z-index: 100;
}
.header h1 {
    font-family: "EB Garamond", serif;
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
}
@media (min-width: 768px) {
    .header h1 {
        font-size: 2.5rem;
    }
}
.header-at {
    opacity: 0.5;
}
.header-lab {
    font-style: italic;
}

/* Dropdown */
.dropdown-wrapper {
    margin-top: 1.5rem;
}
.archive-btn {
    padding: 0.75rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    font-family: "Courier Prime", monospace;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}
.archive-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.dropdown {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 1rem;
    width: 90%;
    max-width: 400px;
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    max-height: 60vh;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}
.dropdown.open {
    opacity: 1;
    pointer-events: auto;
}
.dropdown-item {
    padding: 1rem 1.5rem;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: 0.3s;
    font-family: "EB Garamond", serif;
    font-size: 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}
.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
}
.dropdown-item.active {
    color: #fff;
    background: rgba(197, 160, 89, 0.15);
}
.week-num {
    font-family: "Courier Prime", monospace;
    font-size: 11px;
    color: #d4b06a;
    min-width: 30px;
}

/* Carousel */
.timeline {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.carousel {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-btn {
    position: absolute;
    width: 3.5rem;
    height: 3.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 50;
    transition: 0.3s;
}
.nav-btn:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.7);
}
.nav-prev {
    left: 2rem;
}
.nav-next {
    right: 2rem;
}

.cards-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card {
    position: absolute;
    width: 280px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}
.card-inner {
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: 0.3s;
}
.card:hover .card-inner {
    border-color: rgba(255, 255, 255, 0.25);
}
.card img.pos-left {
    object-position: 12% center;
    margin: -70px;
    width: calc(100% + 70px);
    height: calc(100% + 70px);
}
.card img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
}
.card-info {
    text-align: center;
    margin-top: 1.5rem;
    transition: 0.4s;
}
.card:not(.active) .card-info {
    opacity: 0;
    transform: translateY(20px);
}
.card-week {
    font-family: "Courier Prime", monospace;
    font-size: 11px;
    letter-spacing: 0.15em;
    color: #d4b06a;
    margin-bottom: 0.5rem;
}
.card-title {
    font-family: "EB Garamond", serif;
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 0.5rem;
    color: #fff;
}
.card-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.progress {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}
.progress-bar {
    width: 150px;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    background: #d4b06a;
    transition: 0.5s;
}
.progress-text {
    font-family: "Courier Prime", monospace;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.15em;
}

.footer {
    text-align: center;
    padding: 3rem 0;
    font-family: "Courier Prime", monospace;
    font-size: 11px;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
}

/* Details Page Container */
.details {
    position: fixed;
    inset: 0;
    z-index: 5000;
    background: #0a0a0a;
    overflow-y: auto;
    display: none;
}
.details.open {
    display: block;
}

/* Close/Back Button */
.close-btn {
    position: fixed;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 5100;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(40px);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    font-family: "Courier Prime", monospace;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.5s;
}
@media (min-width: 768px) {
    .close-btn {
        top: 2.5rem;
        left: 2.5rem;
    }
}
.close-btn:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}
.close-btn span:first-child {
    transition: transform 0.3s;
}
.close-btn:hover span:first-child {
    transform: translateX(-4px);
}

/* Document Layout */
.doc {
    max-width: 64rem;
    margin: 0 auto;
    padding: 6rem 1.5rem;
}
@media (min-width: 768px) {
    .doc {
        padding: 10rem 2rem;
    }
}

/* Document Header */
.doc-header {
    width: 100%;
    text-align: center;
    margin-bottom: 4rem;
}
.doc-header-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.doc-badge {
    font-family: "Courier Prime", monospace;
    font-size: 12px;
    letter-spacing: 0.4em;
    color: #d4b06a;
    text-transform: uppercase;
}
.doc-divider {
    height: 1px;
    width: 3rem;
    background: rgba(197, 160, 89, 0.4);
}
.doc-title {
    font-family: "EB Garamond", serif;
    font-size: 2.25rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
    color: #fff;
    animation: slideIn 1s ease-out;
}
@media (min-width: 768px) {
    .doc-title {
        font-size: 3.5rem;
    }
}
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.doc-date {
    font-family: "Courier Prime", monospace;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

/* Hero Image */
.doc-image {
    width: 100%;
    max-width: 900px;
    height: 280px;
    object-fit: cover;
    object-position: center;
    margin: 0 auto 3rem;
    display: block;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
@media (min-width: 768px) {
    .doc-image {
        height: 380px;
    }
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
@media (min-width: 768px) {
    .content-grid {
        grid-template-columns: repeat(12, 1fr);
        gap: 4rem;
    }
}
.main-column {
    grid-column: span 1;
}
@media (min-width: 768px) {
    .main-column {
        grid-column: span 8;
    }
}
.sidebar-column {
    grid-column: span 1;
}
@media (min-width: 768px) {
    .sidebar-column {
        grid-column: span 4;
    }
}

/* Sections */
.section {
    margin-bottom: 4rem;
}
.section-title {
    font-family: "Courier Prime", monospace;
    font-size: 12px;
    letter-spacing: 0.25em;
    color: #d4b06a;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}

/* Main Body Text - ACCESSIBLE SIZES */
.section-content {
    font-family: "EB Garamond", serif;
    font-size: 1.125rem; /* 18px - very readable */
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88); /* Higher contrast */
    margin-bottom: 1.25rem;
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.tech-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    transition: 0.3s;
}
.tech-item:hover {
    transform: translateX(4px);
}
.tech-dot {
    margin-top: 0.6rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.5);
    flex-shrink: 0;
    transition: 0.3s;
}
.tech-item:hover .tech-dot {
    background: #d4b06a;
}
.tech-text {
    font-family: "Courier Prime", monospace;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.03em;
    transition: 0.3s;
}
.tech-item:hover .tech-text {
    color: rgba(255, 255, 255, 0.9);
}

/* Blockquotes/Reflections */
.reflection {
    font-family: "EB Garamond", serif;
    font-size: 1.125rem; /* 18px */
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    padding: 1.5rem 2rem;
    background: rgba(197, 160, 89, 0.08);
    border-left: 3px solid rgba(197, 160, 89, 0.5);
    border-radius: 0 12px 12px 0;
    margin: 1.5rem 0;
}
@media (min-width: 768px) {
    .reflection {
        font-size: 1.1875rem;
    }
} /* 19px */

/* Sidebar */
.sidebar-box {
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 2rem;
}
.sidebar-section {
    margin-bottom: 2rem;
}
.sidebar-section:last-child {
    margin-bottom: 0;
}
.sidebar-title {
    font-family: "Courier Prime", monospace;
    font-size: 11px;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* Learning List in Sidebar */
.learning-list {
    list-style: none;
}
.learning-item {
    margin-bottom: 1.25rem;
}
.learning-item:last-child {
    margin-bottom: 0;
}
.learning-label {
    display: block;
    font-family: "Courier Prime", monospace;
    font-size: 10px;
    letter-spacing: 0.15em;
    color: #d4b06a;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}
.learning-text {
    font-family: "EB Garamond", serif;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
    font-style: italic;
}

/* Meta Tags */
.meta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.meta-tag {
    font-family: "Courier Prime", monospace;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.4rem 0.75rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Footer */
.doc-footer {
    width: 100%;
    padding-top: 6rem;
    padding-bottom: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}
.footer-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}
.footer-circle {
    width: 3.5rem;
    height: 3.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: 0.5s;
    font-size: 1.25rem;
}
.footer-btn:hover .footer-circle {
    border-color: #d4b06a;
    color: #d4b06a;
    transform: scale(1.1);
}
.footer-text {
    font-family: "Courier Prime", monospace;
    font-size: 12px;
    letter-spacing: 0.5em;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    transition: 0.3s;
}
.footer-btn:hover .footer-text {
    color: #fff;
}
.footer-credit {
    font-family: "Courier Prime", monospace;
    font-size: 10px;
    letter-spacing: 0.4em;
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    margin-top: 2rem;
}

.hidden {
    display: none !important;
}

/* ========================================
   CONTENT ELEMENTS - ACCESSIBLE
   ======================================== */

/* Inline Images */
.inline-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin: 2rem auto;
    display: block;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.inline-image.small {
    max-width: 450px;
}
.inline-image.large {
    max-width: 100%;
}
.inline-image.float-right {
    float: right;
    margin: 0.5rem 0 1.5rem 2rem;
    max-width: 320px;
}
.inline-image.float-left {
    float: left;
    margin: 0.5rem 2rem 1.5rem 0;
    max-width: 320px;
}

/* Image Captions */
.caption {
    font-family: "Courier Prime", monospace;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-top: 0.75rem;
    letter-spacing: 0.03em;
}

/* Image Grid */
.image-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}
@media (min-width: 768px) {
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.image-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.image-caption {
    font-family: "Courier Prime", monospace;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-top: 0.75rem;
    letter-spacing: 0.03em;
}

/* Video Embeds */
.video-embed {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.video-embed iframe {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
    border: none;
}

/* Google Drive Embeds */
.gdrive-embed {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
}
.gdrive-embed iframe {
    width: 100%;
    min-height: 400px;
    border: none;
}

/* Content Row (Image + Text) */
.content-row {
    display: flex;
    gap: 2rem;
    align-items: start;
    margin: 2rem 0;
}
@media (max-width: 768px) {
    .content-row {
        flex-direction: column;
    }
}
.content-row img {
    max-width: 320px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.content-row p {
    flex: 1;
    font-family: "EB Garamond", serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
}

/* Project Links */
.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: rgba(197, 160, 89, 0.12);
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 8px;
    color: #d4b06a;
    font-family: "Courier Prime", monospace;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: 0.3s;
    margin: 0.25rem;
}
.project-link:hover {
    background: rgba(197, 160, 89, 0.2);
    border-color: #d4b06a;
    transform: translateX(4px);
}
.project-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

/* ========================================
   SUBSECTIONS - ACCESSIBLE
   ======================================== */

.subsection {
    margin-top: 2.5rem;
}
.subsection-title {
    font-family: "Courier Prime", monospace;
    font-size: 12px;
    letter-spacing: 0.2em;
    color: #d4b06a;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.subsection-content {
    font-family: "EB Garamond", serif;
    font-size: 1.125rem; /* 18px */
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 1.25rem;
}

/* Content Lists */
.content-list {
    font-family: "EB Garamond", serif;
    font-size: 1.0625rem; /* 17px */
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    margin-left: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}
.content-list li {
    margin-bottom: 0.75rem;
}
.content-list li strong {
    color: #fff;
}
.content-list code {
    font-family: "Courier Prime", monospace;
    font-size: 0.9em;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    color: #d4b06a;
}

/* ========================================
   CODE BLOCKS - ACCESSIBLE
   ======================================== */

.code-block {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.code-header {
    font-family: "Courier Prime", monospace;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(197, 160, 89, 0.15);
    color: #d4b06a;
    padding: 0.75rem 1.25rem;
}
.code-block pre {
    background: rgba(0, 0, 0, 0.5);
    padding: 1.25rem;
    margin: 0;
    overflow-x: auto;
}
.code-block code {
    font-family: "Courier Prime", monospace;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   SIDEBAR DETAILS - ACCESSIBLE
   ======================================== */

.fact-item {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.fact-item:last-child {
    border-bottom: none;
}
.fact-label {
    font-family: "Courier Prime", monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}
.fact-value {
    font-family: "EB Garamond", serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.file-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.file-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
}
.file-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(197, 160, 89, 0.3);
}
.file-icon {
    font-size: 1.125rem;
}
.file-name {
    font-family: "Courier Prime", monospace;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   LEARNING CARDS - ACCESSIBLE
   ======================================== */

.learning-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}
@media (min-width: 768px) {
    .learning-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.learning-card {
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
}
.learning-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}
.learning-card h4 {
    font-family: "Courier Prime", monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #d4b06a;
    margin-bottom: 0.75rem;
}
.learning-card p {
    font-family: "EB Garamond", serif;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}
/* Links - Orange with underline */
a {
    color: #d4b06a;
    text-decoration: underline;
    transition: 0.3s;
}

a:hover {
    color: #fff;
}
/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

table th {
    font-family: "Courier Prime", monospace;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #d4b06a;
    text-align: left;
    padding: 1rem;
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
}

table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-family: "EB Garamond", serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    vertical-align: top;
}

table img {
    width: 120px;
    height: 73px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease;
}
table img:hover {
    transform: scale(5);
    z-index: 100;
    position: relative;
}
