/* General body styling */
html {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

html::-webkit-scrollbar {
    display: none; /* Chrome, Safari, and Opera */
}

body {
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
}

/* Transparent top bar with blur effect */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    z-index: 1000;
    box-sizing: border-box;
}

/* Logo styling */
header img {
    height: 50px;
    cursor: pointer;
}

/* Navigation links */
nav a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #1db954; /* Spotify green for accent */
}

/* Login and logout buttons */
a.login-btn, a.logout-btn {
    padding: 8px 16px;
    background-color: #1db954;
    color: #000000;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

a.login-btn:hover, a.logout-btn:hover {
    background-color: #17a44d;
}

/* Toggle sidebar button */
.toggle-sidebar-btn {
    padding: 8px 16px;
    background-color: #1db954;
    color: #000000;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.toggle-sidebar-btn:hover {
    background-color: #17a44d;
}

/* Main content padding to avoid overlap with fixed header */
main {
    padding: 80px 20px 20px 20px;
    max-width: 900px;
    margin: 0 auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

main::-webkit-scrollbar {
    display: none; /* Chrome, Safari, and Opera */
}

/* Headings */
h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

/* Upload area */
.upload-area {
    border: 2px dashed #1db954;
    border-radius: 10px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: border-color 0.3s ease;
    margin-bottom: 20px;
}

.upload-area:hover {
    border-color: #17a44d;
}

.upload-area svg {
    width: 50px;
    height: 50px;
    fill: #1db954;
    margin-bottom: 10px;
}

.upload-area p {
    margin: 0;
    font-size: 18px;
}

form input[type="file"] {
    display: none;
}

form button {
    background-color: #1db954;
    border: none;
    padding: 10px 20px;
    color: #000000;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    margin: 0 auto;
}

form button:hover {
    background-color: #17a44d;
}

/* Flash messages */
ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    color: #ff4c4c;
}

/* Modal overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Modal content */
.pack-modal {
    position: relative;
    background: #222;
    color: white;
    border-radius: 20px;
    padding: 20px;
    max-width: 700px;
    width: 80%;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 2000;
}

.pack-modal .close-pack-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
}

.pack-modal h3 {
    color: #ffffff;
    margin-bottom: 20px;
}

.video-viewer, .music-viewer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.video-nav, .music-nav {
    background-color: #1db954;
    border: none;
    color: #000000;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    margin: 0 10px;
    border-radius: 5px;
}

.video-nav:hover, .music-nav:hover {
    background-color: #17a44d;
}

.modal-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.delete-pack-btn, .download-pack-btn {
    padding: 10px 20px;
    background-color: #1db954;
    color: #000000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    border: none;
}

.delete-pack-btn:hover, .download-pack-btn:hover {
    background-color: #17a44d;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    nav a {
        margin: 0 8px;
        font-size: 14px;
    }

    header img {
        height: 40px;
    }
}

/* Team page styles */
.team-presentation {
    text-align: center;
    margin: 40px 0;
}
.join-btn {
    display: block;
    padding: 15px 30px;
    background-color: #1db954;
    color: #000000;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin: 20px auto;
    width: fit-content;
}
.join-btn:hover {
    background-color: #17a44d;
}
.discord-bloc {
    /*background-image: url('/static/discord.jpg');*/
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding: 60px 20px;
    text-align: center;
    color: #ffffff;
    border-radius: 10px;
    margin: 40px 0;
}
.discord-bloc a {
    display: inline-block;
    padding: 15px 30px;
    background-color: #7289da;
    color: #ffffff;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
.discord-bloc a:hover {
    background-color: #5b6eae;
}
.youtube-embed {
    text-align: center;
    margin: 40px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
.youtube-embed iframe {
    width: 100%;
    max-width: 1200px;
    height: 450px;
    pointer-events: none;
}
.members-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 40px 0;
}
.member-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.member-item::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.5s;
}
.member-item:hover::before {
    left: 100%;
}
.member-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1));
}
.flag {
    font-size: 24px;
    margin-right: 15px;
}
.member-item h3 {
    margin: 0;
    font-size: 18px;
}
.member-item p {
    margin: 0;
    margin-left: 4%;
    font-size: 14px;
    opacity: 0.8;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}
.modal-content {
    background: #000000;
    border-radius: 10px;
    padding: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
}
.close {
    color: #ffffff;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.tournament-bloc, .partners-bloc, .unknxwn-bloc {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.tournament-bloc::before, .partners-bloc::before, .unknxwn-bloc::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}
.tournament-bloc:hover::before, .partners-bloc:hover::before, .unknxwn-bloc:hover::before {
    left: 100%;
}
.tournament-bloc:hover, .partners-bloc:hover, .unknxwn-bloc:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.partner-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}
.partner-card:hover {
    transform: translateY(-5px);
}

/* Join page styles */
.join-description {
    text-align: center;
    margin: 40px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.join-description p {
    font-size: 18px;
    line-height: 1.6;
    margin: 20px 0;
}

.join-form-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 15px;
    padding: 40px;
    margin: 40px auto;
    max-width: 700px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.join-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1db954;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(29, 185, 84, 0.2);
}

/* Custom select dropdown styling */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    cursor: pointer;
    position: relative;
}

.form-group select::-ms-expand {
    display: none;
}

/* Custom dropdown arrow styling */
.form-group select option {
    background: #000000;
    color: #ffffff;
    padding: 12px;
    border: none;
}

/* For webkit browsers */
.form-group select::-webkit-scrollbar {
    width: 8px;
}

.form-group select::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.form-group select::-webkit-scrollbar-thumb {
    background: #1db954;
    border-radius: 4px;
}

.form-group select::-webkit-scrollbar-thumb:hover {
    background: #17a44d;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.role-requirements {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.role-requirements h3 {
    margin-top: 0;
    color: #1db954;
}

.role-requirements h4 {
    margin-bottom: 10px;
    color: #ffffff;
}

.role-requirements ul {
    margin: 0;
    padding-left: 20px;
}

.role-requirements li {
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.9);
}

.checkboxes-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #1db954;
}

.checkbox-group label {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    cursor: pointer;
}

.submit-btn {
    padding: 16px 32px;
    background: linear-gradient(135deg, #1db954, #17a44d);
    color: #ffffff;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    margin-top: 20px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 185, 84, 0.3);
    background: linear-gradient(135deg, #17a44d, #1db954);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Flash messages for join page */
.alert {
    padding: 15px;
    border-radius: 8px;
    margin: 20px auto;
    max-width: 700px;
    text-align: center;
    font-weight: 600;
}

.alert-success {
    background: rgba(29, 185, 84, 0.2);
    border: 1px solid #1db954;
    color: #1db954;
}

.alert-error {
    background: rgba(255, 77, 77, 0.2);
    border: 1px solid #ff4c4c;
    color: #ff4c4c;
}

/* VFX Packs Styles */
.vfx-packs-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 20px;
}

.vfx-pack-line {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.vfx-pack-line:hover {
    transform: translateY(-5px);
}

.vfx-pack-line.taken {
    background-color: #00ff00 !important;
    opacity: 1;
}

.vfx-pack-line.taken:hover {
    transform: translateY(-5px);
}

.pack-name {
    font-weight: bold;
    font-size: 18px;
}

.pack-clips, .pack-money, .pack-assigned, .pack-countdown {
    font-size: 14px;
    opacity: 0.9;
}

/* Pack Modal Styles */
.pack-modal {
    position: fixed;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 700px;
    background: #222;
    color: white;
    border-radius: 20px;
    padding: 20px;
    z-index: 2000;
}

.close-pack-modal {
    float: right;
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.video-viewer {
    position: relative;
    text-align: center;
    margin-top: 20px;
}

.video-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}
.music-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

#prev-video {
    left: 0;
}

#next-video {
    right: 0;
}

#prev-music {
    left: 0;
}

#next-music {
    right: 0;
}

.modal-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
}

.delete-pack-btn, .download-pack-btn {
    background: #ff4c4c;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    color: white;
    cursor: pointer;
    text-decoration: none;
}

.download-pack-btn {
    background: #1db954;
}

/* Videos List Styles */
.videos-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 40px 0;
}

.video-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-item::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.5s;
}

.video-item:hover::before {
    left: 100%;
}

.video-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1));
}

.video-icon {
    font-size: 24px;
    margin-right: 15px;
}

.video-item h3 {
    margin: 0;
    font-size: 18px;
    flex-grow: 1;
}

.video-item form {
    margin-left: auto;
}

.video-item button {
    background-color: #ff4c4c;
    border: none;
    padding: 8px 16px;
    color: #ffffff;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.video-item button:hover {
    background-color: #cc0000;
}

/* YouTube Music Links Styles */
.youtube-links-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 40px 0;
}

.youtube-link-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    cursor: default;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.youtube-link-item::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.5s;
}

.youtube-link-item:hover::before {
    left: 100%;
}

.youtube-link-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1));
}

.youtube-icon {
    font-size: 24px;
    margin-right: 15px;
    color: #ff0000;
}

.youtube-link-title {
    margin: 0;
    font-size: 18px;
    flex-grow: 1;
}


.youtube-link-actions button {
    background-color: #1db954;
    border: none;
    padding: 8px 16px;
    color: #000000;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.youtube-link-actions button:hover {
    background-color: #17a44d;
}


.youtube-player-container .youtube-link-title {
    text-align: center;
    margin: 10px 0;
}


.youtube-player-container .youtube-link-actions {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 10px;
}


.youtube-player {
    display: block;
    margin: 0 auto;
    border-radius: 10px;
}

.upload-link-form {
    display: flex;
    gap: 10px;
    align-items: center;
}

.upload-link-form input[type="url"] {
    flex-grow: 1;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 16px;
}

.upload-link-form input[type="url"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.upload-link-form button {
    padding: 10px 20px;
    background-color: #1db954;
    color: #000000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.upload-link-form button:hover {
    background-color: #17a44d;
}

.youtube-add-form {
    display: flex;
    gap: 10px;
    align-items: center;
}

.youtube-add-form input[type="url"] {
    flex-grow: 1;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 16px;
}

.youtube-add-form input[type="url"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.youtube-add-form button {
    padding: 10px 20px;
    background-color: #1db954;
    color: #000000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.youtube-add-form button:hover {
    background-color: #17a44d;
}

/* Approved Videos Sidebar */
.approved-videos-sidebar {
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 20px 20px 20px;
    overflow-y: auto;
    z-index: 999;
    transition: transform 0.3s ease;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.approved-videos-sidebar::-webkit-scrollbar {
    display: none; /* Chrome, Safari, and Opera */
}

.approved-videos-sidebar.hidden {
    transform: translateX(100%);
}

.approved-videos-sidebar h2 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
}

.approved-videos-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.approved-video-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-links {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 10px;
}

.youtube-link, .optional-link {
    color: #1db954;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.youtube-link:hover, .optional-link:hover {
    color: #17a44d;
}

.optional-link {
    color: #ff6b6b;
}

.optional-link:hover {
    color: #ff5252;
}

.approved-video-item small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

/* Logo Request in Sidebar */
.logo-request-in-sidebar {
    margin-top: 20px;
    text-align: center;
}

.logo-request-in-sidebar .request-logo-btn {
    background-color: #1db954;
    color: #000000;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.logo-request-in-sidebar .request-logo-btn:hover {
    background-color: #17a44d;
}

/* GFX Panel */
.logo-requests-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.logo-request-line {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-request-line:hover {
    transform: translateY(-5px);
}

.request-name {
    font-weight: bold;
    font-size: 16px;
}

.request-date {
    font-size: 14px;
    opacity: 0.8;
}

.logo-request-actions button {
    background-color: #ff4c4c;
    border: none;
    padding: 8px 16px;
    color: #ffffff;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.logo-request-actions button:hover {
    background-color: #cc0000;
}
