@font-face {
    font-family: 'SF Pro Text';
    src: url('./assets/fonts/sf-pro-text-regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Text';
    src: url('./assets/fonts/sf-pro-text-medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Text';
    src: url('./assets/fonts/sf-pro-text-semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Text';
    src: url('./assets/fonts/sf-pro-text-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
* {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
*::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.video-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    margin: 10px 0;
    height: 100%;
}

.artifact-video {
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
}

.artifact-video-preview {
    max-width: 100%;
    border-radius: 4px;
    margin: 5px 0;
}
.file-video-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    width: 100%;
    height: 100%;
    justify-content: center;
}

.video-controls {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 6px;
    align-items: center;
}

.volume-control {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.volume-control::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
}

.speed-control {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
}

.speed-control option {
    background: #000;
    color: white;
}

.video-error-message {
    color: #ff4444;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    background: rgba(255, 68, 68, 0.1);
    border-radius: 8px;
    margin: 10px;
}
.file-video {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}


[data-theme="dark"] .file-video {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .video-controls {
    background-color: rgba(50, 50, 50, 0.8);
}

[data-theme="dark"] .speed-control {
    background: rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .speed-control option {
    background: #222;
}

[data-theme="dark"] .video-error-message {
    background: rgba(255, 68, 68, 0.2);
    color: #ff6666;
}
.quick-actions-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
    order: 3; 
}
.quick-action-button {
    display: flex;
    padding: 7px 10px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 10px;
    border: 1px solid #D7D7D7;
    background: transparent;
    cursor: pointer;
}

.quick-action-button:hover {
    background: #f5f5f5;
    transform: translateY(-1px);
}

.quick-action-text {
    color: #4D4D4D;
    font-family: "SF Pro Text";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.56px;
}

[data-theme="dark"] .quick-action-button {
    background: #2d2d2d;
    border-color: #3d3d3d;
    color: #fff;
}

[data-theme="dark"] .quick-action-button:hover {
    background: #3d3d3d;
}