/* Creativity/static/Creativity/css/dashboard.css */

:root {
    --primary-orange: #ff5e00;
    --primary-orange-light: #ff7733;
    --primary-orange-dark: #cc4a00;
    --primary-glow: rgba(255, 94, 0, 0.4);

    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: rgba(20, 20, 20, 0.95);
    --bg-card-hover: rgba(25, 25, 25, 0.98);

    --text-white: #ffffff;
    --text-gray: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --text-dim: rgba(255, 255, 255, 0.3);

    --gradient-hero: linear-gradient(135deg, rgba(255, 94, 0, 0.15) 0%, rgba(255, 94, 0, 0) 50%);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(255, 94, 0, 0.15);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 94, 0, 0.2);

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
}

/* Анимации */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    33% {
        transform: translateY(-15px) translateX(10px);
    }
    66% {
        transform: translateY(10px) translateX(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 80px;
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Dashboard Container */
.dashboard-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
    position: relative;
    overflow-x: hidden;
}

/* Hero секция */
.dashboard-hero {
    position: relative;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 94, 0, 0.15);
    border-radius: var(--radius-2xl);
    padding: 3.5rem;
    margin-bottom: 3rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.dashboard-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: floatSlow 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 94, 0, 0.4), transparent);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 119, 51, 0.3), transparent);
    bottom: -80px;
    left: -80px;
    animation-delay: -5s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 200, 100, 0.25), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

.dashboard-hero__content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.dashboard-hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 94, 0, 0.12);
    backdrop-filter: blur(10px);
    color: var(--primary-orange);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 94, 0, 0.25);
    animation: fadeInLeft 0.6s ease-out;
}

.dashboard-hero__kicker i:first-child {
    animation: pulse 2s ease-in-out infinite;
}

.dashboard-hero__title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
    position: relative;
    animation: fadeInLeft 0.6s ease-out 0.1s both;
}

.title-decoration {
    position: absolute;
    bottom: -8px;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), transparent);
    border-radius: 2px;
    animation: expandWidth 0.8s ease-out 0.3s both;
}

.dashboard-hero__sub {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    animation: fadeInLeft 0.6s ease-out 0.2s both;
}

.btn-creativity-add {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    color: var(--text-white) !important;
    text-decoration: none;
    font-weight: 600;
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
    animation: fadeInLeft 0.6s ease-out 0.3s both;
    border: none;
    cursor: pointer;
}

.btn-creativity-add:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 94, 0, 0.4);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-creativity-add:hover .btn-glow {
    left: 100%;
}

/* Hero Stats */
.hero-stats {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 2rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 94, 0, 0.2);
    z-index: 2;
    animation: fadeInRight 0.6s ease-out 0.2s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Filters */
.dashboard-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0.5rem 0;
    animation: fadeInUp 0.5s ease-out 0.1s both;
}

.filter-group {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.25rem;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: none;
    color: var(--text-gray);
    padding: 0.5rem 1.2rem;
    border-radius: 60px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.filter-btn i {
    font-size: 0.9rem;
}

.filter-btn:hover {
    color: var(--text-white);
    background: rgba(255, 94, 0, 0.1);
}

.filter-btn.active {
    background: var(--primary-orange);
    color: var(--text-white);
    box-shadow: 0 2px 8px rgba(255, 94, 0, 0.3);
}

.search-box {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.search-box i {
    position: absolute;
    left: 1rem;
    color: var(--text-muted);
}

.search-box input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 60px;
    padding: 0.5rem 1rem 0.5rem 2.5rem;
    color: var(--text-white);
    font-size: 0.85rem;
    width: 220px;
    transition: var(--transition-base);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-orange);
    width: 280px;
}

/* Results count */
.results-count {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: fadeInUp 0.5s ease-out 0.15s both;
}

.results-count i {
    color: var(--primary-orange);
}

/* Creativity Grid */
.creativity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Карточка как на главной */
.creativity-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-base);
    opacity: 0;
    animation: slideInUp 0.5s ease-out forwards;
    animation-delay: calc(var(--delay, 0) * 0.05s);
}

.creativity-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 94, 0, 0.3);
    box-shadow: var(--shadow-hover);
}

.creativity-card__visual {
    position: relative;
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, #141414, #0a0a0a);
    overflow: hidden;
}

.image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.creativity-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.creativity-card:hover .creativity-card__img {
    transform: scale(1.08);
}

.creativity-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
}

.placeholder-icon {
    font-size: 3rem;
    color: rgba(255, 94, 0, 0.3);
    animation: floatSlow 3s ease-in-out infinite;
}

/* Бейджи */
.card-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.creativity-card__badge-draft,
.creativity-card__badge-published {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.creativity-card__badge-draft {
    background: rgba(255, 200, 0, 0.15);
    border: 1px solid #ffcc00;
    color: #ffcc00;
}

.creativity-card__badge-published {
    background: rgba(0, 200, 100, 0.15);
    border: 1px solid #00c864;
    color: #00c864;
}

/* Оверлей с действиями */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
    z-index: 3;
}

.creativity-card:hover .card-overlay {
    opacity: 1;
}

.card-actions-overlay {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem;
}

.overlay-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 94, 0, 0.15);
    border: 1px solid rgba(255, 94, 0, 0.3);
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition-base);
    cursor: pointer;
    transform: translateY(20px);
}

.creativity-card:hover .overlay-action {
    transform: translateY(0);
}

.overlay-action i {
    font-size: 1.25rem;
}

.overlay-action:hover {
    background: var(--primary-orange);
    transform: translateY(-2px) scale(1.05);
}

.overlay-action.delete-btn:hover {
    background: #ff4a5a;
}

/* Информация карточки */
.creativity-card__info {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.creativity-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}

.creativity-card__author {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.author-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 94, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-avatar i {
    font-size: 1.2rem;
}

.creativity-card__author:hover {
    color: var(--primary-orange);
}

.creativity-card__date {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.7rem;
}

.creativity-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 0.5rem 0;
}

.creativity-card__title a {
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition-fast);
    background: linear-gradient(135deg, #fff, #fff);
    background-size: 0% 1px;
    background-repeat: no-repeat;
    background-position: 0% 100%;
}

.creativity-card__title a:hover {
    color: var(--primary-orange);
    background-size: 100% 1px;
    background-image: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
}

.creativity-card__summary {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0 0 1rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.creativity-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.tag:hover {
    background: rgba(255, 94, 0, 0.15);
    color: var(--primary-orange);
}

.creativity-card__footer {
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.creativity-card__stats {
    display: flex;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.creativity-card__stats .stat {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.creativity-card__stats i {
    font-size: 0.7rem;
}

.creativity-card__readmore {
    font-size: 0.8rem;
    color: var(--primary-orange);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    transition: var(--transition-fast);
}

.creativity-card__readmore:hover {
    gap: 0.5rem;
    color: var(--primary-orange-light);
}

/* Pagination */
.creativity-pagination {
    margin-top: 2rem;
    text-align: center;
    animation: fadeInUp 0.5s ease-out 0.2s both;
}

.pagination-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 0.75rem;
    background: transparent;
    border: none;
    color: var(--text-gray);
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    cursor: pointer;
}

.page-btn:hover {
    background: rgba(255, 94, 0, 0.15);
    color: var(--primary-orange);
}

.page-btn.active {
    background: var(--primary-orange);
    color: var(--text-white);
    box-shadow: 0 2px 8px rgba(255, 94, 0, 0.3);
}

/* Empty State */
.creativity-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    max-width: 500px;
    margin: 3rem auto;
    animation: scaleIn 0.5s ease-out;
}

.empty-animation {
    margin-bottom: 1.5rem;
}

.empty-icon-wrapper {
    position: relative;
    display: inline-block;
    font-size: 4rem;
    color: rgba(255, 94, 0, 0.3);
    animation: floatSlow 3s ease-in-out infinite;
}

.empty-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
}

.empty-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.empty-particles span:nth-child(1) {
    top: -10px;
    left: 50%;
    animation-delay: 0s;
}
.empty-particles span:nth-child(2) {
    bottom: -10px;
    left: 20%;
    animation-delay: 0.5s;
}
.empty-particles span:nth-child(3) {
    bottom: -10px;
    right: 20%;
    animation-delay: 1s;
}

.creativity-empty h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.creativity-empty p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* Scroll Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--primary-orange);
    border: none;
    border-radius: 50%;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 100;
    box-shadow: var(--shadow-glow);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-3px);
    background: var(--primary-orange-light);
    box-shadow: 0 8px 20px rgba(255, 94, 0, 0.4);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid rgba(255, 94, 0, 0.2);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    max-width: 400px;
    width: 90%;
    animation: scaleIn 0.3s ease;
}

.modal-content i {
    font-size: 3rem;
    color: #ff4a5a;
    margin-bottom: 1rem;
}

.modal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.modal-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.modal-actions button {
    padding: 0.6rem 1.5rem;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
}

.btn-cancel {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
}

.btn-cancel:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-confirm {
    background: #ff4a5a;
    color: white;
}

.btn-confirm:hover {
    background: #ff1f33;
    transform: translateY(-2px);
}

/* Toast */
.toast-notification {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--primary-orange);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    color: var(--text-white);
    font-size: 0.85rem;
    z-index: 1002;
    display: none;
    white-space: nowrap;
    animation: fadeInUp 0.3s ease;
}

.toast-notification.show {
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .dashboard-container {
        padding: 1.5rem;
    }

    .dashboard-hero {
        padding: 2rem;
    }

    .dashboard-hero__title {
        font-size: 2.5rem;
    }

    .hero-stats {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1.5rem;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .dashboard-container {
        padding: 1rem;
    }

    .dashboard-hero {
        padding: 1.5rem;
        text-align: center;
    }

    .dashboard-hero__content {
        max-width: 100%;
    }

    .dashboard-hero__title {
        font-size: 1.8rem;
    }

    .dashboard-hero__sub {
        font-size: 0.9rem;
    }

    .dashboard-hero__kicker {
        margin: 0 auto 1rem auto;
    }

    .title-decoration {
        left: 50%;
        transform: translateX(-50%);
    }

    .dashboard-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group {
        justify-content: center;
    }

    .search-box input {
        width: 100%;
    }

    .search-box input:focus {
        width: 100%;
    }

    .creativity-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .card-actions-overlay {
        gap: 0.5rem;
    }

    .overlay-action {
        padding: 0.5rem 0.75rem;
        font-size: 0.7rem;
    }

    .scroll-top-btn {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .card-actions-overlay {
        flex-direction: column;
        gap: 0.5rem;
    }

    .overlay-action {
        flex-direction: row;
        padding: 0.5rem 1rem;
    }
}