input[type=checkbox] {
    background-color: transparent;
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    padding: 2px;
    display: flex;
    place-content: center;
    cursor: pointer;
    transition: 100ms ease-in-out;
}

input[type="checkbox"]:checked {
    border-color: white;
}

input[type="checkbox"]::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: transparent;
    transition: 0.2s;
    border-radius: 2px;
    border-color: var(--accent-blue);
}

input[type="checkbox"]:checked::before {
    background-color: var(--accent-blue);
}

.search-bar {
    padding: 20px;
    position: sticky;
    top: var(--nav-height);
    z-index: 500;
    background: linear-gradient(180deg, #1b1b1b 75%, transparent 100%);
}


.search-bar-container {
    display: flex;
    flex-direction: row;
    height: 40px;
    gap: 5px;
}

.search-bar input {
    flex-grow: 1;
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    border-right: none;
    color: white;
    padding: 0 12px;
    font-size: 16px;
    outline: none;
    -webkit-appearance: none;
}

.search-bar button {
    background-color: var(--accent-blue);
    color: white;
    border: none;
    padding: 0 25px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    width: 300px;
    transition: background 0.2s;
    border-radius: 10px;
}

.search-bar button:hover {
    background-color: var(--accent-blue-hover);
}


.row {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}

.row-large {
    display: grid;

    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);

    gap: 10px;
    margin-bottom: 20px;


    align-items: start;
}


.row.align-top {
    align-items: start;
}

.game-info {
    padding: 0 20px;
}


.label {
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
}


input[type="text"], select, textarea {
    width: 100%;
    background-color: var(--bg-input);
    border: 1px solid transparent;
    color: #eee;
    padding: 10px;
    font-size: 16px;
    outline: none;
    transition: 0.2s;
    -webkit-appearance: none;
    border-radius: 10px;
}

input[type="text"]:focus, select:focus, textarea:focus {
    background-color: var(--bg-input-focus);
    border-color: #007aff;
}

input[type="number"], select, textarea {
    width: 100%;
    background-color: var(--bg-input);
    border: 1px solid transparent;
    color: #eee;
    padding: 10px;
    font-size: 16px;
    outline: none;
    transition: 0.2s;
    border-radius: 10px;
}

input[type="number"]:focus, select:focus, textarea:focus {
    background-color: var(--bg-input-focus);
    border-color: #007aff;
    -webkit-appearance: none;
}

input:disabled {
    color: #666;
    font-style: italic;
    cursor: not-allowed;
}

.error-message {
    color: #ff4d4d;
    font-size: 13px;
    font-weight: 500;
    margin-top: 6px;
    display: none;
    padding-left: 10px;
    animation: fadeIn 0.2s ease-in-out;
}


input[type="text"].input-error {
    border-color: #ff4d4d;
}


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

select {

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;


    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640' fill='%23eeeeee'%3e%3cpath d='M300.3 440.8C312.9 451 331.4 450.3 343.1 438.6L471.1 310.6C480.3 301.4 483 287.7 478 275.7C473 263.7 461.4 256 448.5 256L192.5 256C179.6 256 167.9 263.8 162.9 275.8C157.9 287.8 160.7 301.5 169.9 310.6L297.9 438.6L300.3 440.8z'/%3e%3c/svg%3e");

    background-repeat: no-repeat;

    background-size: 14px;
    background-position: right 10px center;


    padding-right: 30px;
}

select:focus {

    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640' fill='%23eeeeee'%3e%3cpath transform='rotate(180 320 320)' d='M300.3 440.8C312.9 451 331.4 450.3 343.1 438.6L471.1 310.6C480.3 301.4 483 287.7 478 275.7C473 263.7 461.4 256 448.5 256L192.5 256C179.6 256 167.9 263.8 162.9 275.8C157.9 287.8 160.7 301.5 169.9 310.6L297.9 438.6L300.3 440.8z'/%3e%3c/svg%3e");
}

textarea {
    resize: vertical;
    display: block;
}


.desc-box {
    color: #888;
    font-size: 16px;
    line-height: 1.4;
    display: flex;
    justify-content: flex-end;
    position: relative;
    padding: 0 0 0 20px;
}

.desc-content {
    padding-right: 15px;
    text-align: left;
    width: 100%;
}

.desc-content p {
    margin-bottom: 8px;
}


.category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.category {
    display: flex;
    background-color: var(--bg-input);
    padding: 8px 8px;
    gap: 7px;
    align-items: center;
    cursor: pointer;
    border-radius: 10px;
}


.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.tag-item {
    background: #333;
    padding: 8px 12px;
    color: #ccc;
    font-size: 16px;
    border-radius: 10px;
}

.tag-item.active {
    border-left: 3px solid #fff;
    color: #fff;
    background: #3a3a3a;
}

.img-preview-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;


    background-color: #2b2b2b;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;


    width: 100%;
    max-width: 400px;
    min-width: 302px;
}


.img-preview-box::before {
    content: '\f03e';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 48px;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    z-index: 0;
}

.img-preview-box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;


    position: relative;
    z-index: 1;
    background-color: #2b2b2b;
}

.dims-badge {
    position: absolute;
    top: 5px;
    left: 5px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 10px;
    border: 1px solid rgb(255 255 255 / 20%);
    border-radius: 5px;
    backdrop-filter: blur(5px);
    align-items: center;
    -webkit-align-items: center;
    z-index: 2;
    gap: 5px;
    display: none;
}

.dims-badge.success {
    color: #00ff7a;
    border-color: rgba(0, 255, 122, 0.5);
    background: rgba(0, 50, 20, 0.8);
    display: flex;
}


.dims-badge.error {
    color: #ff4d4d;
    border-color: rgba(255, 77, 77, 0.5);
    background: rgba(50, 0, 0, 0.8);
    display: flex;
}

.upload-button, .clear-button {
    position: absolute;
    bottom: 5px;
    color: rgb(255 255 255);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    padding: 10px;
    transition: 100ms color ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    height: 30px;
    gap: 5px;
    font-weight: 600;
    font-size: 14px;
    z-index: 2;
}

.upload-button {
    right: 5px;
    background: #007aff;
}

.upload-button:hover {
    color: rgb(255, 255, 255);
}

.clear-button {
    left: 5px;
    background: #ff4d4d;
    display: none;
}

.clear-button.visible {
    display: flex;
}


.file-list {
    background: var(--bg-input);
    border: 1px solid var(--border-color);
}

.file-row {
    padding: 8px 10px;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-blue);
    font-size: 13px;
    cursor: pointer;
}

.file-row:last-child {
    border-bottom: none;
}

.file-row:hover {
    background: #333;
}

.file-row span {
    color: var(--accent-blue);
    text-decoration: underline;
    cursor: pointer;
}

.file-row.upload {
    color: #fff;
}


.trailer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
}

.media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 16 / 9;
}

.media.image-zoom {
    cursor: zoom-in;
}

.media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.media:hover {
    border-color: #666;
}

.media.selected {
    border-color: var(--accent-blue);
}

.media.selected img {
    opacity: 1;
}

.media .checkbox-background {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    border-radius: 5px;
}

.trailer-memory-badge {
    position: absolute;
    top: 5px;
    left: 5px;
    background: rgba(0, 0, 0, 0.8);
    font-size: 14px;
    font-weight: bold;
    padding: 5px 10px;
    border: 1px solid rgb(255 255 255 / 20%);
    border-radius: 5px;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

.trailer-play-button {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    border-radius: 100em;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trailer-play-button i {
    font-size: 20px;
}


.add-game-button {
    padding: 20px;
    background: linear-gradient(0deg, #1b1b1b 75%, transparent 100%);
    position: sticky;
    bottom: 0;
    z-index: 500;
}

.btn-full {
    width: 100%;
    height: 40px;
    background-color: var(--accent-blue);
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.2s;
    border-radius: 10px;
}

.btn-full:hover {
    background-color: var(--accent-blue-hover);
}

.btn-full:disabled {
    background-color: #444;
    color: #888;
    cursor: not-allowed;
}


.separator {
    border-bottom: 1px solid #333;
    margin: 20px 0;
}

.icon-upload {
    margin-right: 5px;
    font-style: normal;
}


.tab-container {
    background-color: var(--bg-input);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    transition: 0.2s;
    border-radius: 10px;
}


.tab-container:focus-within {
    background-color: var(--bg-input-focus);
    border-color: #007aff;
}

.tabs-header {
    display: flex;
    background-color: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    border-radius: 6px 6px 0 0;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 8px 15px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border-right: 1px solid transparent;
    border-left: 1px solid transparent;
    transition: 0.2s;
    position: relative;
}

.tab-btn:hover {
    color: var(--text-main);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px 6px 0 0;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.tab-btn.active {
    color: var(--text-main);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px 6px 0 0;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 1px solid rgba(255, 255, 255, 0.05)
}


textarea.tab-content {
    display: none;
    border: none;
    background: transparent;
    padding: 10px;
}


textarea.tab-content.active {
    display: block;
}


textarea.tab-content:focus {
    background-color: transparent;
}


.tabs-left {
    display: flex;
}

.md-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    border-bottom: 1px solid rgb(255 255 255 / 5%);
}

.md-toolbar-group {
    display: flex;
    gap: 5px;
    align-items: center;
}

.md-toolbar button {
    background: transparent;
    border: none;
    color: #888;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    font-size: 16px;
    gap: 5px;
}

.md-toolbar button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.md-toolbar button.active {
    color: var(--accent-blue);
    background-color: rgba(0, 122, 255, 0.1);
}

.md-toolbar button img {
    width: 18px;
    height: 18px;
}

.md-toolbar .divider {
    width: 1px;
    height: 16px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 5px;
}


.markdown-preview {
    display: none;
    padding: 10px;
    color: #ccc;
    font-size: 16px;
    min-height: 180px;
    background-color: rgba(0, 0, 0, 0.2);
}

.markdown-preview.active {
    display: block;
}


.markdown-preview h1, .markdown-preview h2 {
    color: #fff;
    border-bottom: 1px solid #444;
    padding-bottom: 5px;
    margin-bottom: 10px;
    font-size: 18px;
}

.markdown-preview ul {
    margin-left: 20px;
}

.markdown-preview p {
    margin-bottom: 10px;
}

.markdown-preview strong {
    color: #fff;
}


.ctx-menu {
    display: none;
    position: fixed;
    z-index: 10000;
    background-color: #252526;
    border: 1px solid #454545;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    width: 220px;
    font-size: 13px;
    color: #cccccc;
    max-width: 90vw;
    border-radius: 6px;
    overflow: hidden;
}


.ctx-view {
    display: none;
}

.ctx-view.active {
    display: block;
}


.ctx-header {
    padding: 8px 12px;
    background-color: #333;
    border-bottom: 1px solid #454545;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ctx-header:hover {
    background-color: #444;
}


.ctx-item {
    padding: 8px 12px;
    cursor: pointer;
    transition: background 0.1s;
}

.ctx-item:hover {
    background-color: #094771;
    color: white;
}

.ctx-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ctx-icon {
    width: 14px;
    text-align: center;
    color: #007aff;
}

.ctx-item:hover .ctx-icon {
    color: white;
}

.ctx-arrow {
    font-size: 12px;
    margin-left: auto;
    opacity: 0.6;
}


.fs-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 20000;

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}


.fs-overlay.active {
    opacity: 1;
    pointer-events: all;
}


.fs-content img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}


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


.fs-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
    z-index: 20001;
    border-radius: 50%;
}

.fs-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

#fs-video {
    width: 90vw;
    aspect-ratio: 16 / 9;
    box-shadow: 0 0 30px rgba(0, 0, 0, 1);
    background: black;
    outline: none;
}

.fs-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease;
    z-index: 20001;
    opacity: 0;
    pointer-events: none;
}


.fs-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}


.fs-overlay.active .fs-nav-btn.visible {
    opacity: 1;
    pointer-events: all;
}


.fs-nav-btn.prev {
    left: 20px;
}

.fs-nav-btn.next {
    right: 20px;
}

.media-add-btn {
    cursor: pointer;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.03);

    transition: all 0.2s ease;
}


.add-icon-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #888;
    transition: color 0.2s;
}

.add-icon-content i {
    font-size: 24px;
}

.add-icon-content span {
    font-size: 14px;
    font-weight: 600;
}


.media-add-btn:hover {
    border-color: var(--accent-blue);
    background-color: rgba(0, 122, 255, 0.1);
}

.media-add-btn:hover .add-icon-content {
    color: #fff;
}


.loading-overlay {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.loading-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-top: 5px solid var(--accent-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

.loading-text {
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


.game-info {
    position: relative;
}


.table {
    width: 100%;
    border-collapse: collapse;
    color: #eee;
    background-color: var(--bg-input);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
}

.table thead {
    background-color: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table th, .table td {
    padding: 15px;
    text-align: left;
}

.table th {
    font-weight: 700;
    color: #aaa;
    text-transform: uppercase;
    font-size: 14px;
}

.table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color 0.2s;
}

.table tbody tr:last-child {
    border-bottom: none;
}

.table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}


.badge {
    display: flex;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    gap: 5px;
    flex-direction: row;
    align-items: center;
    width: fit-content;
}

.bg-secondary {
    background-color: #666;
    color: #fff;
}

.bg-primary {
    background-color: var(--accent-blue);
    color: #fff;
}

.bg-success {
    background-color: #28a745;
    color: #fff;
}

.bg-warning {
    background-color: #ff8000;
    color: #fff;
}

.bg-danger {
    background-color: #dc3545;
    color: #fff;
}


.btn-sm {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 5px;
}

.btn-outline-success {
    border: 1px solid #28a745;
    color: #28a745;
    background: transparent;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-outline-success:hover {
    background-color: #28a745;
    color: #fff;
}

.btn-primary {
    background-color: var(--accent-blue);
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background-color: var(--accent-blue-hover);
}


.accordion-toggle {
    cursor: pointer;
}

.accordion-toggle .fa-chevron-down {
    transition: transform 0.3s ease;
}

.accordion-toggle.expanded .fa-chevron-down {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    background-color: rgba(220, 53, 69, 0.1);
    padding: 15px;
    font-size: 14px;
    color: #ffcccc;
    border-left: 3px solid #dc3545;
    margin-top: 10px;
    border-radius: 4px;
}

.accordion-content.warning {
    background-color: rgba(255, 128, 0, 0.1);
    color: #ffe3cc;
    border-left: 3px solid #ff8000;
}

.accordion-content.show {
    display: block;
}


tr.accordion-content td {
    padding: 0;
}

tr.accordion-content div {
    padding: 15px;
}


.action-cell {
    text-align: right;
    width: 50px;
}

.action-btn {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #888;
    transition: background 0.2s, color 0.2s;
}

.action-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

@media (max-width: 1000px) {

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

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


    .desc-box {
        justify-content: flex-start;
        margin-top: 5px;
        padding: 0;
    }

    .desc-content {
        border-right: none;
    }

    .row > div:empty {
        display: none;
    }

    .search-bar-container {
        display: flex;
        flex-direction: column;
        height: fit-content;
        gap: 5px;
    }

    .search-bar {
        background: linear-gradient(180deg, #1b1b1b 85%, transparent 100%);
    }

    .search-bar button {
        width: 100%;
        height: 40px;
        content: "";

    }

    .label {
        margin-bottom: 0;
        padding: 0;
    }

    .trailer-grid {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .trailer-grid::-webkit-scrollbar {
        height: 10px;
        position: absolute;
    }

    .trailer-grid::-webkit-scrollbar-track {
        background: #1b1b1b;
    }

    .trailer-grid::-webkit-scrollbar-thumb {
        background: #007aff;
        border: 2px solid #1b1b1b;
        border-radius: 20px;
    }

    .media {
        flex-shrink: 0;
        max-height: 150px;
        aspect-ratio: 16 / 9;
    }

    .fs-nav-btn {
        width: 40px;
        height: 40px;
        background: rgba(0, 0, 0, 0.3);
    }

    .media-add-btn {

        width: auto;


        height: 150px;


        aspect-ratio: 16 / 9;


        flex-shrink: 0;


        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;


        border: 2px dashed rgba(255, 255, 255, 0.2);
        border-radius: 10px;
        background-color: rgba(255, 255, 255, 0.03);
        transition: all 0.2s ease;
    }


    .table {
        background-color: transparent;
    }

    .table thead {
        display: none;
    }

    .table, .table tbody, .table tr, .table td {
        display: block;
        width: 100%;
    }

    .table tr {
        margin-bottom: 15px;
        background-color: var(--bg-input);
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        position: relative;
        padding-bottom: 10px;
    }

    .table td {
        padding: 10px 15px;
        text-align: left;
        border-bottom: none;
    }


    .table td:first-child {
        font-size: 12px;
        color: #888;
        padding-bottom: 0;
    }


    .table td:nth-child(2) {
        padding-top: 5px;
        padding-bottom: 5px;
    }


    .table td:nth-child(3) {
        padding-top: 5px;
    }


    .table td.action-cell {
        position: absolute;
        top: 10px;
        right: 10px;
        width: auto;
        padding: 0;
    }
}