:root {
    /* Color Palette: Void Tech (Less Green, More Deep Space) */
    --bg-deep: #050505;
    /* Almost pure black for contrast */
    --bg-dark-overlay: rgba(10, 10, 12, 0.85);

    /* Glassmorphism Bases - Neutralized */
    --bg-glass: rgba(255, 255, 255, 0.03);
    /* Very subtle white tint */
    --bg-glass-strong: rgba(25, 25, 30, 0.7);

    /* Primary Accents - The "Nature" Pop */
    --primary: #00ff9d;
    --primary-dim: #00cc7e;
    --primary-glow: rgba(0, 255, 157, 0.5);

    /* Secondary Accents */
    --secondary: #64748b;
    /* Cool Grey for tech elements */
    --accent-blue: #38bdf8;
    /* Subtle tech blue for variety */

    /* Text */
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    /* Slate 400 */
    --text-dim: #475569;

    /* Borders */
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-active: rgba(0, 255, 157, 0.3);

    /* Color Inputs */
    --warning: #f59e0b;
    --danger: #ef4444;
    --success: #10b981;

    /* Spacing & Layout */
    --sidebar-width: 280px;
    --glass-blur: 24px;
    --card-radius: 24px;
}

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Canvas */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 10%, #11151c, var(--bg-deep));
}

a {
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.01em;
}

p {
    color: var(--text-muted);
}

/* --- ANIMATIONS --- */

/* 1. Entrance Animation */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 2. Shimmer/Glint Effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

/* 3. Floating */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Apply animations */
/* .main-content animation removed per user request for static container */

.feature-card {
    opacity: 0;
    /* Hidden initially */
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Stagger delays for grid items */
.features-grid .feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.features-grid .feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.features-grid .feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* --- COMPONENTS --- */

/* Glass Base */
.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--border-glass);
    border-radius: var(--card-radius);
    padding: 2.5rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Specific Interactive Cards Only */
.interactive-panel:hover,
.feature-card:hover {
    transform: translateY(-8px) scale(1.01);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 255, 157, 0.1);
}

/* Sidebar */
.sidebar {
    width: var(--sidebar-width);
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    background: rgba(5, 5, 5, 0.6);
    /* Darker, less green */
    backdrop-filter: blur(20px);
    border-right: 1px solid var(--border-glass);
    z-index: 100;
}

.sidebar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 3.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-main);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.sidebar-brand i {
    color: var(--primary);
    filter: drop-shadow(0 0 8px var(--primary-glow));
    animation: float 4s ease-in-out infinite;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.nav-item {
    padding: 1rem 1.25rem;
    border-radius: 14px;
    color: var(--text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    border-radius: 4px;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    padding-left: 1.5rem;
    /* Slide effect */
}

.nav-item.active {
    background: rgba(0, 255, 157, 0.08);
    /* Very subtle tint */
    color: var(--primary);
    border: 1px solid rgba(0, 255, 157, 0.1);
}

.nav-item.active::before {
    transform: scaleY(1);
}

.nav-badge {
    background: var(--primary);
    /* Green badge instead of red for consistency? Or Red for alert? Let's use Red for logic, or Accent Blue. Let's keep Red for 'bugs' */
    background: #ff4757;
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border-radius: 99px;
    margin-left: auto;
    display: none;
    box-shadow: 0 0 10px rgba(255, 71, 87, 0.4);
}

.nav-badge.visible {
    display: inline-block;
}

/* Buttons with Glint */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    border-radius: 14px;
    /* Squircle */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-main);
}

.btn-primary {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px var(--primary-glow);
    background: #4dffb8;
    /* Lighter vivid green */
}

/* Animated Glint on Buttons */
.btn-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transition: 0.5s;
}

.btn-primary:hover::after {
    left: 100%;
    transition: 0.4s ease-in-out;
}

/* User Profile */
.user-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 18px;
    border: 1px solid var(--border-glass);
    transition: border-color 0.3s ease;
}

.user-profile:hover {
    border-color: var(--text-muted);
}

/* Forms */
input,
select,
textarea {
    width: 100%;
    padding: 1.1rem;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.3);
    /* Darker input bg */
    border: 1px solid var(--border-glass);
    color: var(--text-main);
    margin-bottom: 1.2rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 0 3px rgba(0, 255, 157, 0.15);
}

label {
    margin-bottom: 0.6rem;
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Main Layout */
.app-container {
    display: flex;
}

.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    padding: 4rem;
}

/* Hero Section */
.hero-section {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 4rem;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.3;
    padding-bottom: 10px;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, var(--text-muted));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(0, 255, 157, 0.1);
    /* Subtle green ambience */
}

/* Featured word in title (optional span if we had it, but applying to whole for now) */

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 3.5rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 6rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    text-align: left;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    background: rgba(0, 255, 157, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.2);
}

.feature-title {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

/* Reponsive */
@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem;
    }

    .nav-links,
    .user-profile {
        display: none;
    }

    .main-content {
        margin-left: 0;
        padding: 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }
}

/* --- NEW HOME PAGE STYLES --- */

.system-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(0, 255, 157, 0.1);
    border: 1px solid rgba(0, 255, 157, 0.2);
    border-radius: 20px;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    animation: slideUpFade 0.6s ease-out forwards;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary);
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}


.dashboard-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-icon-small {
    color: var(--primary);
    margin-right: 0.5rem;
}

.card-header {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 0.5rem;
}

.card-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.card-visual {
    margin-top: 1.5rem;
    height: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Visual Micro-Interactions */
.scan-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: shimmer 3s infinite;
}

.pulse-circle {
    width: 15px;
    height: 15px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: relative;
}

.pulse-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.5;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

.bar-graph {
    display: flex;
    gap: 4px;
    align-items: flex-end;
    height: 100%;
}

.bar-graph span {
    width: 6px;
    background: var(--primary);
    border-radius: 2px;
    opacity: 0.7;
    animation: graphAnim 1.5s infinite ease-in-out alternate;
}

.bar-graph span:nth-child(1) {
    height: 40%;
    animation-delay: 0s;
}

.bar-graph span:nth-child(2) {
    height: 70%;
    animation-delay: 0.2s;
}

.bar-graph span:nth-child(3) {
    height: 50%;
    animation-delay: 0.4s;
}

.bar-graph span:nth-child(4) {
    height: 80%;
    animation-delay: 0.1s;
}

@keyframes graphAnim {
    from {
        transform: scaleY(1);
    }

    to {
        transform: scaleY(1.5);
    }
}

/* --- HOME PAGE EXPANSION STYLES --- */

.section-container {
    margin-top: 8rem;
    margin-bottom: 4rem;
    position: relative;
}

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

/* Section Typo */
.section-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-badge.center {
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    max-width: 600px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.center-text {
    margin-left: auto;
    margin-right: auto;
}

/* Split Layout */
.split-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.content-side {
    flex: 1;
}

.image-side {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

/* Device Image */
.device-image {
    max-width: 100%;
    filter: drop-shadow(0 0 30px rgba(0, 255, 157, 0.15));
    z-index: 2;
    transition: all 0.5s ease;
}

.device-image.floating {
    animation: float 6s ease-in-out infinite;
}

.image-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    opacity: 0.3;
    z-index: 1;
    filter: blur(40px);
}

/* Feature List in Split */
.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-main);
}

.feature-list i {
    color: var(--primary);
    background: rgba(0, 255, 157, 0.1);
    padding: 6px;
    border-radius: 50%;
    font-size: 0.8rem;
}

/* Workflow Steps */
.workflow-steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 4rem;
    position: relative;
}

.step-card {
    flex: 1;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-deep);
    border: 2px solid var(--border-glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    border-color: var(--primary);
    background: rgba(0, 255, 157, 0.05);
    transform: scale(1.1);
}

.step-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.step-line {
    flex: 0.5;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-glass), transparent);
    margin-top: 30px;
    /* align with icon center */
    position: relative;
    z-index: 1;
}

/* Technical Specs Grid */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.spec-item {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.spec-item:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.02);
}

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

.spec-value {
    color: var(--text-main);
    font-weight: 600;
}

/* Footer */
.main-footer {
    margin-top: 8rem;
    border-top: 1px solid var(--border-glass);
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--primary);
}

/* Responsive Expansion */
@media (max-width: 900px) {
    .split-layout {
        flex-direction: column-reverse;
        gap: 2rem;
        text-align: center;
    }

    .feature-list li {
        justify-content: center;
    }

    .workflow-steps {
        flex-direction: column;
        gap: 3rem;
    }

    .step-line {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* --- INFRASTRUCTURE PAGE STYLES --- */

.infrastructure-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.nested-panel {
    border-left: 2px solid var(--border-glass);
    padding-left: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.accordion-header {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    padding: 1.25rem 1.75rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
}

.accordion-header.active {
    background: rgba(0, 255, 157, 0.05);
    border-color: var(--primary);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.accordion-content.open {
    max-height: 5000px;
    opacity: 1;
    padding-top: 1rem;
}

.chevron {
    transition: transform 0.3s ease;
}

.accordion-header.active .chevron {
    transform: rotate(180deg);
}

/* Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.active {
    background: rgba(0, 255, 157, 0.1);
    color: var(--primary);
    border: 1px solid rgba(0, 255, 157, 0.2);
}

.status-badge.warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

/* Action Groups & Buttons */
.actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.action-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.action-btn-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--text-muted);
    border: 1px solid transparent;
    transition: all 0.2s;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
}

.action-btn-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
}

.action-btn-icon.delete:hover {
    background: rgba(239, 68, 68, 0.15);
    color: var(--danger);
    border-color: rgba(239, 68, 68, 0.3);
}

/* Custom Select Dropdown */
.custom-select {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: 1px solid var(--border-glass);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    font-size: 0.95rem;
    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='%2300ff9d' 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 1rem center;
    background-size: 1em;
}

.custom-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 255, 157, 0.1);
}

.custom-select option {
    background-color: #000;
    color: white;
    padding: 10px;
}

/* --- DASHBOARD UTILITIES --- */

@keyframes skeleton-pulse {
    0% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 0.3;
    }
}

/* Skeleton Loader */
.skeleton-loader {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.5rem;
    animation: skeleton-pulse 1.5s infinite ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.skeleton-header {
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.skeleton-text {
    height: 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin-top: 0.5rem;
    width: 60%;
    animation: skeleton-pulse 1.5s infinite ease-in-out;
}

@keyframes skeleton-pulse {
    0% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        opacity: 0.3;
    }
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    color: inherit;
}

@keyframes pulse-glow {
    0% {
        transform: scale(1);
        filter: brightness(100%);
    }

    50% {
        transform: scale(1.1);
        filter: brightness(130%);
    }

    100% {
        transform: scale(1);
        filter: brightness(100%);
    }
}

/* Folder and Task Actions - Horizontal Layout */
.folder-actions,
.task-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}