/* --- 14. LANDING PAGE SPECIFIC --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 5%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--p-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-toggle {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-toggle:hover {
    color: var(--p-color);
    background: var(--p-light);
}

/* --- Hero Section --- */
.hero {
    padding: 120px 5% 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    min-height: 100vh;
}

/* Dark mode: Add subtle background to hero section */
[data-theme="dark"] .hero {
    background: rgba(30, 41, 59, 0.3);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 100px;
    }

    .hero-content {
        align-items: center;
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--p-color), #8b5cf6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Dark mode: Use solid bright color instead of gradient for better visibility */
[data-theme="dark"] .hero-content h1 {
    background: none;
    -webkit-text-fill-color: initial;
    color: #f1f5f9;
    text-shadow: 0 0 30px rgba(96, 165, 250, 0.3);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Dark mode: Ensure description text is bright and visible */
[data-theme="dark"] .hero-content p {
    color: #cbd5e1;
}

/* Hero Image Styling */
.hero-image {
    margin-top: 2rem;
    animation: float 6s ease-in-out infinite;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(59, 130, 246, 0.2));
}

[data-theme="dark"] .hero-img {
    filter: drop-shadow(0 20px 40px rgba(96, 165, 250, 0.3));
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 992px) {
    .hero-img {
        max-width: 350px;
    }
}

/* --- Login Box --- */
.login-card {
    background: var(--bg-surface);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    max-width: 450px;
    margin: 0 auto;
    width: 100%;
}

.login-card h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.25rem;
}

html[dir="rtl"] .form-group {
    text-align: right;
}

html[dir="ltr"] .form-group {
    text-align: left;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
    background: var(--bg-body);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.2s;
}

.form-input:focus {
    border-color: var(--p-color);
    box-shadow: 0 0 0 3px var(--p-light);
    outline: none;
}

.btn-login {
    width: 100%;
    padding: 0.75rem;
    background: var(--p-color);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 1rem;
}

.btn-login:hover {
    background: var(--p-hover);
    transform: translateY(-2px);
}

.social-login {
    margin-top: 2rem;
    text-align: center;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem;
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-social:hover {
    background: var(--border-color);
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.login-card {
    animation: fadeInUp 0.8s ease-out forwards;
    display: block;
}

/* --- Landing Page Sections --- */
.container-landing {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--p-color), #8b5cf6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Features Section --- */
.features-section {
    padding: 80px 0;
    background: var(--bg-surface);
}

/* Features Showcase with Image */
.features-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 3rem 0 4rem;
    padding: 2rem;
    background: var(--bg-body);
    border-radius: var(--radius-md);
}

.features-image-container {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.features-showcase-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    filter: drop-shadow(0 20px 40px rgba(59, 130, 246, 0.2));
}

[data-theme="dark"] .features-showcase-img {
    filter: drop-shadow(0 20px 40px rgba(96, 165, 250, 0.3));
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.showcase-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-surface);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.showcase-feature:hover {
    transform: translateX(10px);
    border-left-color: var(--p-color);
    box-shadow: var(--shadow-md);
}

[dir="rtl"] .showcase-feature {
    border-left: none;
    border-right: 3px solid transparent;
}

[dir="rtl"] .showcase-feature:hover {
    transform: translateX(-10px);
    border-right-color: var(--p-color);
}

.showcase-feature i {
    font-size: 2rem;
    color: var(--p-color);
    flex-shrink: 0;
}

.showcase-feature h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.showcase-feature p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 992px) {
    .features-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-image-container {
        order: -1;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.feature-card {
    background: var(--bg-surface);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--p-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--p-color), #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: white;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- Statistics Section --- */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--p-color), #8b5cf6);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: white;
    animation: fadeInUp 0.8s ease-out backwards;
}

.stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-item:nth-child(4) {
    animation-delay: 0.4s;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* --- Benefits Section --- */
.benefits-section {
    padding: 80px 0;
    background: var(--bg-body);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--p-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--p-color);
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    background: var(--p-color);
    color: white;
    transform: scale(1.1);
}

.benefit-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.benefit-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .features-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .features-section,
    .benefits-section {
        padding: 60px 0;
    }

    .stats-section {
        padding: 40px 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* --- Pricing Section --- */
.pricing-section {
    padding: 80px 0;
    background: var(--bg-body);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.pricing-card {
    background: var(--bg-surface);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--p-color);
}

.pricing-card.featured {
    border-color: var(--p-color);
    border-width: 3px;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--p-color), #8b5cf6);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.pricing-price .currency {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--p-color);
    font-family: var(--font-primary);
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--success);
    font-size: 1rem;
}

.pricing-features li.disabled {
    opacity: 0.5;
}

.pricing-features li.disabled i {
    color: var(--text-muted);
}

.btn-pricing {
    width: 100%;
    padding: 1rem;
    background: var(--p-color);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-pricing:hover {
    background: var(--p-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* --- Contact Section --- */
.contact-section {
    padding: 80px 0;
    background: var(--bg-surface);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--p-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--p-color);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-item p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-form {
    background: var(--bg-body);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-input,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background: var(--bg-surface);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.2s;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .form-input:focus,
.contact-form textarea:focus {
    border-color: var(--p-color);
    box-shadow: 0 0 0 3px var(--p-light);
    outline: none;
}

.btn-contact {
    width: 100%;
    padding: 1rem;
    background: var(--p-color);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: var(--p-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}



/* --- Certificate Styles --- */
.certificate {
    padding: 0px !important;
    margin: 0px !important;
    width: 100% !important;
    height: 100% !important;
    background-image: url('https://portal.i-volunteer.ly/uploads/certificate.png') !important;
    background-size: cover !important;
}

.header {
    padding-right: 30px !important;
    text-align: right !important;
    color: white !important;
    padding-top: 8px !important;
}

.content {
    padding-right: 90px !important;
    padding-left: 130px !important;
    text-align: center !important;
}

.logos {
    padding-left: 30px !important;
    text-align: left !important;
}

.certificate table {
    width: 90% !important;
    font-size: 24px !important;
    font-weight: bold !important;
    text-align: center !important;
}

.certificate td {
    font-size: 20px !important;
    font-weight: bold !important;
    text-align: center !important;
}

.header h1 {
    color: white !important;
    font-weight: bold !important;
    font-size: 35px !important;
}

.header h3 {
    color: white !important;
    font-weight: bold !important;
    font-size: 25px !important;
}

@media print {
    @page {
        size: A4 landscape !important;
        margin: 0 !important
    }

    body {
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    .certificate {
        width: 100% !important;
        height: 100% !important;
    }

    .content,
    .header,
    .logos {
        margin: 0 auto;
        padding: 0 auto;
    }
}

/* --- 15. MODULE BUILDER --- */
.filter-row {
    align-items: center;
    margin-bottom: 2rem;
}

.search-icon-premium {
    position: absolute;
    right: 10px;
    /* RTL Alignment: Icon on Right */
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    /* Darker gray for visibility */
    z-index: 5;
    /* Ensure above input */
}

.search-input-premium {
    padding-right: 35px !important;
    /* Space for icon on Right */
    padding-left: 10px !important;
}

.search-input-premium::placeholder {
    color: #aaa !important;
    /* Explicit Gray */
    opacity: 1;
}

.module-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.badge-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.badge-module-info {
    background-color: var(--bg-body);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.badge-module-visible {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-module-hidden {
    background-color: var(--bg-body);
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}

.btn-module-fields {
    background-color: var(--bg-body);
    color: var(--p-color);
    border: 1px solid var(--border-color);
}

.btn-module-preview {
    background-color: var(--bg-body);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.empty-state-icon {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.empty-state-text {
    color: var(--text-secondary);
}

.empty-state-sub {
    color: var(--text-muted);
}

.empty-state-container {
    grid-column: 1/-1;
    padding: 3rem;
    text-align: center;
}

/* --- 17. GRID VIEW ONE --- */
.view-header-actions {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-end !important;
    /* Always left in RTL */
}

.view-header-end {
    justify-content: flex-end;
}

.hidden-init {
    display: none;
}

.form-group-year {
    margin-top: 1rem;
    margin-bottom: 0px;
    width: 100%;
}

.card-header-flex {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-icon-small {
    margin-bottom: 0;
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

.card-title-nomargin {
    margin-bottom: 0;
}

.form-submit-container {
    margin-top: 1.5rem;
}

.form-submit-btn {
    width: 100%;
    padding: 1rem;
}

.radio-table {
    text-align: center;
    border-collapse: collapse;
    width: 100%;
}

.radio-th {
    background-color: var(--bg-body);
    width: 50%;
    text-align: center;
    border: 1px solid var(--border-color);
    padding: 8px;
}

.radio-td {
    border: 1px solid var(--border-color);
    padding: 8px;
}

/* --- RESTORED GRID STYLES --- */
.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 1rem 0;
}

.premium-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-primary) !important;
}

.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--p-color-light, #e0e7ff);
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--p-color), var(--info));
    opacity: 0.8;
}

.premium-card h2 {
    font-size: 1.15rem;
    margin: 0.75rem 0 0.5rem 0;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
}

.premium-card-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--p-color);
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.premium-card:hover .premium-card-icon {
    background: var(--p-color);
    color: #fff;
    border-color: var(--p-color);
    transform: rotate(-5deg);
}

.card-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
    width: 100%;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.btn-premium {
    flex: 1;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none !important;
}

.btn-premium-edit {
    background: rgba(var(--p-rgb, 67, 94, 190), 0.1);
    color: var(--p-color);
}

.btn-premium-edit:hover {
    background: var(--p-color);
    color: white;
    box-shadow: 0 4px 8px rgba(var(--p-rgb, 67, 94, 190), 0.2);
}

.btn-premium-delete {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    flex: 0 0 auto;
    width: auto;
    min-width: 40px;
}

.btn-premium-delete:hover {
    background: #fff5f5;
    color: var(--danger);
    border-color: var(--danger);
}

.select-checkbox-premium {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
}