/* p.hr.css */

/* Abwechselnde Sektions-Hintergründe - beginnt mit dunklem Blau */
.hr-lifecycle {
    background-color: var(--bg-secondary);
}

.team-hero {
    background-color: var(--bg-secondary);
    margin-top: 0 !important;
    padding-top: 4rem !important;
}

.hr-modern-features {
    background: var(--bg-secondary);
}

/* HR-specific styles extending the base product styles */
.hr-lifecycle {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
}

.hr-lifecycle-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.hr-timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 200px;
}

.hr-timeline-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    box-shadow: 0 8px 24px rgba(74, 144, 226, 0.3);
}

.hr-timeline-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.hr-timeline-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.hr-timeline-connector {
    width: 60px;
    height: 2px;
    background: var(--gradient-accent);
    margin: 0 1rem;
    display: none;
}

/* HR Moderne Features Styles */
.hr-modern-features {
    padding: 4rem 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.hr-modern-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    pointer-events: none;
}

.hr-features-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.hr-modern-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.hr-title-accent {
    background: var(--accent-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 0.7em;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.hr-title-main {
    color: var(--text-primary);
    font-weight: 800;
}

.hr-intro-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 600px;
}

.hr-intro-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hr-floating-elements {
    position: relative;
    width: 200px;
    height: 200px;
}

.hr-float-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    animation: float 6s ease-in-out infinite;
}

.hr-float-element:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.hr-float-element:nth-child(2) {
    bottom: 20px;
    left: 20px;
    animation-delay: 2s;
}

.hr-float-element:nth-child(3) {
    bottom: 20px;
    right: 20px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hr-features-showcase {
    position: relative;
    z-index: 1;
}

/* Verbessertes Hero Feature Layout */
.hr-feature-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 3rem;
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(20px) saturate(1.1);
    border-radius: 24px;
    border: 1px solid rgba(74, 144, 226, 0.2);
    transition: all 0.4s ease;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 4px 16px rgba(74, 144, 226, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hr-feature-hero:hover {
    border-color: rgba(74, 144, 226, 0.4);
    box-shadow:
        0 16px 64px rgba(0, 0, 0, 0.15),
        0 8px 32px rgba(74, 144, 226, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hr-feature-hero-content {
    position: relative;
    z-index: 1;
}

.hr-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(74, 144, 226, 0.15);
    border: 1px solid rgba(74, 144, 226, 0.3);
    border-radius: 50px;
    color: var(--accent-primary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hr-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hr-hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hr-hero-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hr-hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hr-hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.hr-hero-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
}

.hr-feature-icon-modern {
    width: 32px;
    height: 32px;
    background: var(--gradient-accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.hr-hero-metrics {
    display: flex;
    gap: 2rem;
}

.hr-metric {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hr-metric-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-primary);
    line-height: 1;
}

.hr-metric-label {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
}

.hr-feature-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Responsive Design für Hero Feature */.hr-glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hr-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hr-card-dots {
    display: flex;
    gap: 0.5rem;
}

.hr-card-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-primary);
    opacity: 0.6;
}

.hr-card-dots span:first-child {
    background: #ff5f56;
    opacity: 1;
}

.hr-card-dots span:nth-child(2) {
    background: #ffbd2e;
    opacity: 1;
}

.hr-card-dots span:nth-child(3) {
    background: #27ca3f;
    opacity: 1;
}

.hr-card-title {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.hr-card-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hr-candidate-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hr-candidate-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.hr-candidate-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gradient-accent);
    flex-shrink: 0;
}

.hr-candidate-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hr-candidate-name {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.hr-candidate-role {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.hr-candidate-score {
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 0.9rem;
}

/* HR Modern Features Grid */
.hr-features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.hr-feature-card-modern {
    background: rgba(26, 26, 46, 0.85);
    backdrop-filter: blur(24px) saturate(1.2);
    border: 1px solid rgba(74, 144, 226, 0.3);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 4px 16px rgba(74, 144, 226, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateZ(0);
}

.hr-feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.hr-feature-card-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.08) 0%, rgba(53, 122, 189, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.hr-feature-card-modern:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(74, 144, 226, 0.6);
    background: rgba(26, 26, 46, 0.95);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.15),
        0 12px 40px rgba(74, 144, 226, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hr-feature-card-modern:hover::before {
    opacity: 1;
}

.hr-feature-card-modern:hover::after {
    opacity: 1;
}

.hr-feature-card-modern:hover .hr-card-glow {
    opacity: 1;
    transform: scale(1);
}

.hr-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(74, 144, 226, 0.15) 0%, rgba(74, 144, 226, 0.05) 30%, transparent 70%);
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
    transform: scale(0.8);
}

.hr-card-header-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.hr-icon-container {
    width: 48px;
    height: 48px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.hr-card-title-modern {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.hr-card-description-modern {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.hr-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.hr-feature-tag {
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 0.8rem;
    font-weight: 500;
}

.card-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.progress-indicator {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-right: 1rem;
    position: relative;
    overflow: hidden;
}

.progress-indicator::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 2px;
    transition: width 1s ease;
}

.progress-indicator[data-progress="90"]::after { width: 90%; }
.progress-indicator[data-progress="85"]::after { width: 85%; }
.progress-indicator[data-progress="98"]::after { width: 98%; }
.progress-indicator[data-progress="92"]::after { width: 92%; }

.progress-text {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
}

/* Responsive Design */.hr-scalability-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.hr-scalability-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hr-scalability-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.hr-scalability-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hr-scalability-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hr-scale-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.hr-scale-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.hr-scale-content h4 {
    color: var(--accent-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hr-scale-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.hr-scalability-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hr-company-size-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 900px;
}

.hr-size-card {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px) saturate(1.1);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(74, 144, 226, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 4px 16px rgba(74, 144, 226, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateZ(0);
}

.hr-size-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hr-size-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.06) 0%, rgba(53, 122, 189, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.hr-size-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 32px rgba(74, 144, 226, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    border-color: rgba(74, 144, 226, 0.5);
}

.hr-size-card:hover::before {
    opacity: 1;
}

.hr-size-card:hover::after {
    opacity: 1;
}

.hr-size-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.hr-size-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 4px 8px rgba(74, 144, 226, 0.3));
}

.hr-size-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.hr-size-range {
    background: var(--accent-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.hr-size-features {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 120px;
}

.hr-feature-item {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hr-feature-item::before {
    content: '✓';
    color: var(--accent-primary);
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
}

.hr-size-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    position: relative;
    z-index: 1;
    margin-top: auto;
}

/* Kleine Teams Visualisierung */
.hr-team-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.hr-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(74, 144, 226, 0.2);
    transition: all 0.3s ease;
}

.hr-dot.active {
    background: var(--accent-primary);
    box-shadow: 0 0 10px rgba(74, 144, 226, 0.5);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Mittlere Unternehmen Visualisierung */
.hr-building-layers {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: center;
}

.hr-layer {
    height: 8px;
    background: rgba(74, 144, 226, 0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hr-layer:nth-child(1) { width: 50px; }
.hr-layer:nth-child(2) { width: 40px; }
.hr-layer:nth-child(3) { width: 35px; }
.hr-layer:nth-child(4) { width: 30px; }

.hr-layer.active {
    background: var(--accent-primary);
    box-shadow: 0 0 8px rgba(74, 144, 226, 0.4);
}

.hr-size-card:hover .hr-layer.active {
    animation: layer-glow 1.5s infinite;
}

@keyframes layer-glow {
    0%, 100% { box-shadow: 0 0 8px rgba(74, 144, 226, 0.4); }
    50% { box-shadow: 0 0 15px rgba(74, 144, 226, 0.7); }
}

/* Grosse Organisationen Visualisierung */
.hr-enterprise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.25rem;
    width: 45px;
    height: 45px;
}

.hr-grid-item {
    background: rgba(74, 144, 226, 0.2);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hr-grid-item.active {
    background: var(--accent-primary);
    box-shadow: 0 0 6px rgba(74, 144, 226, 0.5);
}

.hr-size-card:hover .hr-grid-item.active {
    animation: grid-pulse 1s infinite;
}

@keyframes grid-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Spezielle Hover-Effekte für jede Karte */
.hr-small-team:hover {
    border-color: #10b981;
}

.hr-small-team:hover .hr-size-range {
    background: #10b981;
}

.hr-medium-company:hover {
    border-color: #f59e0b;
}

.hr-medium-company:hover .hr-size-range {
    background: #f59e0b;
}

.hr-large-organization:hover {
    border-color: #4A90E2;
}

.hr-large-organization:hover .hr-size-range {
    background: #4A90E2;
}

.hr-mobile-features {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.hr-mobile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.hr-mobile-feature {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px) saturate(1.1);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(74, 144, 226, 0.25);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 4px 16px rgba(74, 144, 226, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateZ(0);
}

.hr-mobile-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hr-mobile-feature::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.06) 0%, rgba(53, 122, 189, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.hr-mobile-feature:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 32px rgba(74, 144, 226, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    border-color: rgba(74, 144, 226, 0.5);
}

.hr-mobile-feature:hover::before {
    opacity: 1;
}

.hr-mobile-feature:hover::after {
    opacity: 1;
}

.hr-mobile-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 8px 16px rgba(74, 144, 226, 0.4));
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.hr-mobile-feature:hover .hr-mobile-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 12px 24px rgba(74, 144, 226, 0.6));
}

.hr-mobile-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(74, 144, 226, 0.3));
}

.hr-mobile-feature h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.hr-mobile-feature p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive Design */
@media (min-width: 769px) {
    .timeline-connector {
        display: block;
    }
}/* HR Demo Styles */
.demo {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.demo-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hr-demo-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Verbesserte Demo-Container für bessere Card-Struktur *//* Employee Form Section */
.hr-employee-form-section {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px) saturate(1.1);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(74, 144, 226, 0.25);
    transition: all 0.3s ease;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 4px 16px rgba(74, 144, 226, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hr-employee-form-section:hover {
    border-color: rgba(74, 144, 226, 0.4);
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.15),
        0 6px 24px rgba(74, 144, 226, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hr-form-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hr-employee-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hr-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.hr-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hr-form-group label {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.hr-form-group input,
.hr-form-group select {
    padding: 0.75rem;
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hr-form-group input:focus,
.hr-form-group select:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.15);
}

.form-submit {
    margin-top: 1rem;
    padding: 0.875rem 1.5rem;
    background: var(--gradient-accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 144, 226, 0.3);
}

/* Employee List Section */
.hr-employee-list-section {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px) saturate(1.1);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(74, 144, 226, 0.25);
    transition: all 0.3s ease;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 4px 16px rgba(74, 144, 226, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hr-employee-list-section:hover {
    border-color: rgba(74, 144, 226, 0.4);
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.15),
        0 6px 24px rgba(74, 144, 226, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hr-list-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.employee-list {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 200px;
    color: var(--text-muted);
}

.empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state p {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.empty-state small {
    font-size: 0.8rem;
    opacity: 0.7;
}

.employee-card {
    background: var(--bg-primary);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.employee-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 144, 226, 0.1);
    border-color: var(--accent-primary);
}

.employee-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.employee-info h4 {
    color: var(--accent-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.employee-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.employee-actions {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.action-btn:hover {
    background: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
}

.employee-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
}

.detail-label {
    color: var(--text-muted);
}

.detail-value {
    color: var(--text-primary);
    font-weight: 500;
}

/* Demo Activity Log */
.demo-activity {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    margin-top: 2rem;
}

.activity-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.activity-title::before {
    content: "📋";
    font-size: 1.2rem;
}

.activity-log {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: auto;
}

.activity-entry {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: var(--bg-primary);
    border-radius: 8px;
    border-left: 3px solid var(--accent-primary);
}

.activity-time {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: var(--text-muted);
    min-width: 60px;
}

.activity-action {
    color: var(--text-primary);
    font-size: 0.9rem;
}

/* Responsive Design for Demo *//* Additional styles for exit functionality */
.form-actions,
.hr-form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.form-actions .btn,
.hr-form-actions .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    flex: 1;
    max-width: 200px;
    border-radius: 12px;
    height: auto;
    line-height: 1.2;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-actions .cancel-btn,
.hr-form-actions .cancel-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid rgba(74, 144, 226, 0.2);
}

.form-actions .cancel-btn:hover,
.hr-form-actions .cancel-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-color: var(--accent-primary);
}

/* Mobile optimierte Button-Anordnung */.form-group textarea,
.hr-form-group textarea {
    padding: 0.75rem;
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: inherit;
    resize: vertical;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group textarea:focus,
.hr-form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.15);
}

.employee-card[data-status="exited"] {
    opacity: 0.7;
    border-color: #dc3545;
}

.employee-card[data-status="exited"] .employee-info h4::after {
    content: " (Ausgetreten)";
    color: #dc3545;
    font-size: 0.8rem;
    font-weight: normal;
}

/* Notification Buttons */
.notification-buttons {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.notification-buttons .action-btn {
    flex: 1;
    min-width: 120px;
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
}

.notification-buttons .action-btn.completed {
    background: #28a745;
    color: white;
    border-color: #28a745;
    cursor: default;
}

.notification-buttons .action-btn.completed:hover {
    background: #28a745;
    color: white;
    border-color: #28a745;
    transform: none;
}

.notification-buttons .action-btn:not(.completed):hover {
    background: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
    transform: translateY(-1px);
}

/* Responsive Design für Notification Buttons *//* HR-Checkliste Styles */
.checklist-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.checklist-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checklist-title::before {
    content: "✅";
    font-size: 1rem;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.checklist-item:hover {
    background: rgba(74, 144, 226, 0.05);
    border-color: var(--accent-primary);
    transform: translateX(2px);
}

.checklist-item.completed {
    background: rgba(40, 167, 69, 0.1);
    border-color: #28a745;
}

.checklist-item.completed .checklist-text {
    text-decoration: line-through;
    opacity: 0.7;
}

.checklist-checkbox {
    width: 18px;
    height: 18px;
    margin-right: 0.75rem;
    accent-color: var(--accent-primary);
    cursor: pointer;
}

.checklist-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    flex: 1;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.checklist-icon {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.checklist-text {
    flex: 1;
    transition: all 0.3s ease;
}

.checklist-progress {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 4px;
    transition: width 0.5s ease;
    width: 0%;
}

.progress-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    font-weight: 500;
}

/* Responsive Design für Checkliste *//* Feature Cards Badges über CSS - Korrigierte Badge-Anzeige */
.hr-category-badge {
    padding: 0.25rem 0.75rem;
    background: rgba(74, 144, 226, 0.15);
    border: 1px solid rgba(74, 144, 226, 0.3);
    border-radius: 50px;
    color: var(--accent-primary);
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
}

.hr-feature-card-modern[data-category="onboarding"] .hr-category-badge::after {
    content: "Einarbeitung";
}

.hr-feature-card-modern[data-category="development"] .hr-category-badge::after {
    content: "Entwicklung";
}

.hr-feature-card-modern[data-category="management"] .hr-category-badge::after {
    content: "Verwaltung";
}

.hr-feature-card-modern[data-category="offboarding"] .hr-category-badge::after {
    content: "Austritt";
}

/* Verstecke ursprünglichen Badge-Text */
.hr-feature-card-modern .hr-category-badge {
    font-size: 0;
}

.hr-feature-card-modern .hr-category-badge::after {
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
}

/* Mobile Features Icons über CSS verbessern */
.hr-mobile-feature:nth-child(1) .hr-mobile-icon::before {
    content: "📱";
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.hr-mobile-feature:nth-child(2) .hr-mobile-icon::before {
    content: "✅";
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.hr-mobile-feature:nth-child(3) .hr-mobile-icon::before {
    content: "📊";
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.hr-mobile-feature:nth-child(4) .hr-mobile-icon::before {
    content: "💬";
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* SVG Icons in Mobile Features verbergen, da wir Emojis verwenden */
.hr-mobile-feature .hr-mobile-icon svg {
    display: none;
}

/* HR Demo Layout Verbesserungen */
.hr-demo {
    padding: 8rem 0;
    background: var(--bg-primary);

}

.hr-demo-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hr-demo-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Demo Activity Verbesserungen */
.hr-demo-activity {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px) saturate(1.1);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(74, 144, 226, 0.25);
    margin-top: 2rem;
    transition: all 0.3s ease;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 4px 16px rgba(74, 144, 226, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hr-demo-activity:hover {
    border-color: rgba(74, 144, 226, 0.4);
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.15),
        0 6px 24px rgba(74, 144, 226, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hr-activity-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hr-activity-title::before {
    content: "📋";
    font-size: 1.2rem;
}

.hr-activity-log {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: auto;
    max-height: 200px;
    overflow-y: auto;
}

.hr-activity-entry {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 3px solid var(--accent-primary);
    transition: all 0.3s ease;
}

.hr-activity-entry:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
}

.hr-activity-time {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: var(--text-muted);
    min-width: 60px;
    background: rgba(74, 144, 226, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.hr-activity-action {
    color: var(--text-primary);
    font-size: 0.9rem;
}

/* HR Checkliste Verbesserungen */
.hr-checklist-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(74, 144, 226, 0.2);
}

.hr-checklist-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hr-checklist-title::before {
    content: "✅";
    font-size: 1rem;
}

.hr-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hr-checklist-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hr-checklist-item:hover {
    background: rgba(74, 144, 226, 0.08);
    border-color: var(--accent-primary);
    transform: translateX(2px);
}

.hr-checklist-item.completed {
    background: rgba(40, 167, 69, 0.1);
    border-color: #28a745;
}

.hr-checklist-item.completed .hr-checklist-text {
    text-decoration: line-through;
    opacity: 0.7;
}

.hr-checklist-checkbox {
    width: 18px;
    height: 18px;
    margin-right: 0.75rem;
    accent-color: var(--accent-primary);
    cursor: pointer;
}

.hr-checklist-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    flex: 1;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.hr-checklist-icon {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.hr-checklist-text {
    flex: 1;
    transition: all 0.3s ease;
}

.hr-checklist-progress {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hr-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.hr-progress-fill {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 4px;
    transition: width 0.5s ease;
    width: 0%;
}

.hr-progress-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    font-weight: 500;
}

/* Responsive Verbesserungen für HR Demo *//* Mobile spezifische Fixes *//* ===== REMOVED: MOBILE OPTIMIERUNGEN FÜR HERO SEKTION ===== */
/* High-specificity hero overrides moved to prov.duplicates.css (lines 2438-2551) */
/* These were: body .hero-products .hero-products-content .hero-products-title, etc. */

/* ===== FINALE KORREKTUREN ===== */

/* Light Mode Hero Feature Hintergrund korrigieren */
body.light-mode .hr-feature-hero {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(74, 144, 226, 0.2) !important;
    color: #1a1a2e !important;
    backdrop-filter: blur(10px) !important;
}

/* Doppelte Icons Problem lösen - Verstecke Text in Skalierbarkeits-Icons */
.hr-size-icon {
    font-size: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 40px !important;
}

/* SVG Icons in Skalierbarkeits-Karten stylen und zentrieren */
.hr-size-icon svg {
    color: var(--accent-primary) !important;
    width: 32px !important;
    height: 32px !important;
    display: block !important;
}

/* Mobile Features Icons korrekt zentrieren */
.hr-mobile-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 80px !important;
}

/* Verstecke doppelte Mobile Icons (SVG) da wir Emojis über ::before verwenden */
.hr-mobile-feature .hr-mobile-icon svg {
    display: none !important;
}

.hr-mobile-feature .hr-mobile-icon::before {
    display: block !important;
    font-size: 2.5rem !important;
    line-height: 1 !important;
}

/* ===== WEITERE FINALE KORREKTUREN ===== */

/* Dropdown Optionen im Dark Mode lesbar machen */
.hr-form-group select option {
    background: var(--bg-primary) !important;
    color: var(--text-primary) !important;
}

body.dark-mode .hr-form-group select option {
    background: #1a1a2e !important;
    color: #ffffff !important;
}

body.light-mode .hr-form-group select option {
    background: #ffffff !important;
    color: #1a1a2e !important;
}

/* Mitarbeiter erfassen Button Design verbessern */
.hr-form-submit {
    background: var(--gradient-accent) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 1rem 2rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: white !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    width: 100% !important;
    margin-top: 1.5rem !important;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3) !important;
}

.hr-form-submit:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(74, 144, 226, 0.4) !important;
}

/* Erfasste Mitarbeiter Cards Design verbessern */
.hr-employee-card {
    background: rgba(26, 26, 46, 0.8) !important;
    backdrop-filter: blur(20px) saturate(1.1) !important;
    border: 1px solid rgba(74, 144, 226, 0.25) !important;
    border-radius: 20px !important;
    padding: 1.5rem !important;
    margin-bottom: 1rem !important;
    transition: all 0.3s ease !important;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 4px 16px rgba(74, 144, 226, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.hr-employee-card:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(74, 144, 226, 0.5) !important;
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.15),
        0 6px 24px rgba(74, 144, 226, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
}

.hr-employee-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    margin-bottom: 1rem !important;
}

.hr-employee-info h4 {
    color: var(--accent-primary) !important;
    font-weight: 600 !important;
    margin-bottom: 0.25rem !important;
    font-size: 1.1rem !important;
}

.hr-employee-info p {
    color: var(--text-secondary) !important;
    font-size: 0.9rem !important;
}

.hr-employee-actions {
    display: flex !important;
    gap: 0.5rem !important;
    flex-wrap: wrap !important;
}

.hr-employee-actions .action-btn {
    padding: 0.5rem 1rem !important;
    border: 1px solid rgba(74, 144, 226, 0.3) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    color: var(--accent-primary) !important;
    border-radius: 12px !important;
    font-size: 0.8rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.25rem !important;
}

.hr-employee-actions .action-btn:hover {
    background: var(--accent-primary) !important;
    color: white !important;
    border-color: var(--accent-primary) !important;
    transform: translateY(-1px) !important;
}

/* Demo Aktivitäten Card Breite korrigieren */
.hr-demo-activity {
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    grid-column: 1 / -1 !important;
}
