/* Reset und Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #2d3748;
    background: linear-gradient(135deg, #e8f5e9 0%, #f3e5f5 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    color: white;
    padding: 1.5rem 0;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
}

.header h1 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.header p {
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Projekt Header */
.project-header {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(76, 175, 80, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.project-info {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.project-input {
    padding: 0.75rem;
    border: 2px solid #e8f5e9;
    border-radius: 12px;
    font-size: 0.9rem;
    min-width: 150px;
    background: white;
    transition: all 0.3s ease;
}

.project-input:focus {
    outline: none;
    border-color: #4caf50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.project-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.navigation-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #e1f5fe 0%, #b3e5fc 100%);
    border: 2px solid #29b6f6;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #0277bd;
    box-shadow: 0 3px 12px rgba(41, 182, 246, 0.2);
    animation: pulse 2s infinite;
}

.hint-icon {
    font-size: 1.2rem;
}

.hint-text {
    flex: 1;
    line-height: 1.3;
}

@keyframes pulse {
    0% { box-shadow: 0 3px 12px rgba(41, 182, 246, 0.2); }
    50% { box-shadow: 0 6px 20px rgba(41, 182, 246, 0.4); }
    100% { box-shadow: 0 3px 12px rgba(41, 182, 246, 0.2); }
}

/* Stepper */
.stepper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.1);
    overflow-x: auto;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 80px;
    position: relative;
}

.step::after {
    content: '👆 Klickbar';
    position: absolute;
    bottom: -25px;
    font-size: 0.7rem;
    color: #29b6f6;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-weight: 500;
}

.step:hover::after {
    opacity: 1;
}

.step:hover {
    background: linear-gradient(135deg, #e8f5e9 0%, #f3e5f5 100%);
    transform: translateY(-2px);
}

.step.active {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #2e7d32;
    transform: scale(1.05);
}

.step.completed {
    background: linear-gradient(135deg, #e1f5fe 0%, #b3e5fc 100%);
    color: #0277bd;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 0.25rem;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.4);
}

.step.completed .step-number {
    background: linear-gradient(135deg, #29b6f6 0%, #0288d1 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(41, 182, 246, 0.4);
}

.step-title {
    font-size: 0.75rem;
    text-align: center;
    font-weight: 500;
}

/* Fortschrittsbalken */
.progress-bar {
    background: #e0e0e0;
    height: 4px;
    border-radius: 2px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(90deg, #4caf50 0%, #66bb6a 50%, #29b6f6 100%);
    height: 100%;
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 2px;
}

/* Suchfeld */
.search-container {
    margin-bottom: 1.5rem;
}

.search-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e8f5e9;
    border-radius: 16px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #4caf50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

/* Step Content */
.step-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 12px 40px rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.1);
    min-height: 400px;
}

.step-content h2 {
    color: #2e7d32;
    margin-bottom: 1rem;
    font-size: 1.75rem;
    font-weight: 600;
}

.step-content h3 {
    color: #388e3c;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.3rem;
    font-weight: 500;
}

/* Tasks */
.task-group {
    margin-bottom: 2rem;
}

.task-group h4 {
    color: #555;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.task {
    border: 2px solid #e8f5e9;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #fafffe 100%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.08);
}

.task.completed {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-color: #4caf50;
    box-shadow: 0 6px 24px rgba(76, 175, 80, 0.2);
    transform: translateY(-2px);
}

.task.required {
    border-left: 5px solid #ff7043;
    position: relative;
}

.task.required::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #ff7043 0%, #ffab40 100%);
    border-radius: 0 0 0 14px;
}

.task.required.completed {
    border-left-color: #4caf50;
}

.task.required.completed::before {
    background: linear-gradient(180deg, #4caf50 0%, #66bb6a 100%);
}

.task-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.task-checkbox {
    margin-top: 0.125rem;
}

.task-title {
    flex: 1;
    font-weight: 600;
    color: #2e7d32;
    font-size: 1.1rem;
}

.task-required {
    color: #ff7043;
    font-size: 0.75rem;
    font-weight: bold;
    background: linear-gradient(135deg, #ffe0b2 0%, #ffcc02 100%);
    padding: 0.25rem 0.75rem;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(255, 112, 67, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.task-meta {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.task-date {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.task-date label {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
}

.task-date input {
    padding: 0.75rem;
    border: 2px solid #e8f5e9;
    border-radius: 12px;
    font-size: 0.875rem;
    background: white;
    transition: all 0.3s ease;
}

.task-date input:focus {
    outline: none;
    border-color: #4caf50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.task-duration {
    font-size: 0.75rem;
    color: #666;
    align-self: end;
    padding: 0.5rem 0;
}

.task-notes {
    margin-top: 0.75rem;
}

.task-notes label {
    display: block;
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.task-notes textarea {
    width: 100%;
    min-height: 80px;
    padding: 0.75rem;
    border: 2px solid #e8f5e9;
    border-radius: 12px;
    font-size: 0.875rem;
    font-family: inherit;
    resize: vertical;
    background: white;
    transition: all 0.3s ease;
}

.task-notes textarea:focus {
    outline: none;
    border-color: #4caf50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

/* Form Elements */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 500;
    color: #555;
}

.form-input, .form-select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e8f5e9;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.form-input:focus, .form-select:focus {
    outline: none;
    border-color: #4caf50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e9 100%);
    border-radius: 12px;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

/* Buttons */
.btn {
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-primary {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.4);
}

.btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #388e3c 0%, #4caf50 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(76, 175, 80, 0.5);
}

.btn-secondary {
    background: linear-gradient(135deg, #90a4ae 0%, #78909c 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(120, 144, 156, 0.3);
}

.btn-secondary:hover:not(:disabled) {
    background: linear-gradient(135deg, #78909c 0%, #607d8b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(120, 144, 156, 0.4);
}

.btn-success {
    background: #28a745;
    color: white;
}

.btn-success:hover:not(:disabled) {
    background: #218838;
}

.btn-info {
    background: linear-gradient(135deg, #29b6f6 0%, #0288d1 100%);
    color: white;
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    box-shadow: 0 3px 12px rgba(41, 182, 246, 0.4);
}

.btn-info:hover {
    background: linear-gradient(135deg, #0288d1 0%, #0277bd 100%);
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(41, 182, 246, 0.5);
}

.add-task-btn {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #4caf50;
    border: 3px dashed #4caf50;
    padding: 1.5rem;
    width: 100%;
    margin-top: 1.5rem;
    border-radius: 16px;
    font-weight: 600;
    box-shadow: none;
}

.add-task-btn:hover {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-color: #388e3c;
    color: #2e7d32;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.2);
}

/* Quick Buttons */
.quick-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.quick-btn {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: 1px solid #4caf50;
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    border-radius: 20px;
    cursor: pointer;
    color: #2e7d32;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
}

.quick-btn:hover {
    background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 2px solid #29b6f6;
    border-radius: 16px;
    padding: 1rem;
    margin: 1rem 0;
    position: relative;
}

.info-box.warning {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-color: #ff9800;
    box-shadow: 0 4px 20px rgba(255, 152, 0, 0.2);
}

.info-box.error {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border-color: #f44336;
    box-shadow: 0 4px 20px rgba(244, 67, 54, 0.2);
}

.info-box h4 {
    margin-bottom: 0.5rem;
    color: #0288d1;
    font-weight: 600;
}

.info-box.warning h4 {
    color: #ef6c00;
    font-weight: 600;
}

.info-box.error h4 {
    color: #c62828;
    font-weight: 600;
}

/* Navigation */
.navigation {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    margin: 5% auto;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 12px 40px rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 2px solid rgba(76, 175, 80, 0.1);
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5e9 100%);
    border-radius: 20px 20px 0 0;
}

.modal-header h2,
.modal-header h3 {
    margin: 0;
    color: #2c3e50;
}

.modal-body {
    padding: 1.5rem;
}

.modal-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

.close {
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
    line-height: 1;
}

.close:hover {
    color: #000;
}

/* Timeline */
.timeline-item {
    border-left: 2px solid #1976d2;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: #1976d2;
    border-radius: 50%;
}

.timeline-date {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
}

.timeline-title {
    font-weight: 600;
    margin: 0.25rem 0;
}

.timeline-duration {
    font-size: 0.75rem;
    color: #999;
}

.timeline-notes {
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Footer */
.footer {
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
    padding: 2rem 0;
    margin-top: 3rem;
    text-align: center;
}

.footer p {
    color: #666;
    font-size: 0.875rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .project-header {
        flex-direction: column;
        align-items: stretch;
    }

    .project-info {
        justify-content: center;
    }

    .project-actions {
        justify-content: center;
    }

    .stepper {
        padding: 0.5rem;
        gap: 0.25rem;
    }

    .step {
        min-width: 60px;
        padding: 0.25rem;
    }

    .step-title {
        font-size: 0.7rem;
    }

    .task-meta {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
    }

    .modal-header,
    .modal-body {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .step-content {
        padding: 1rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .quick-buttons {
        flex-wrap: wrap;
    }
}

/* Print Styles */
@media print {
    .header,
    .stepper,
    .progress-bar,
    .search-container,
    .navigation,
    .footer,
    .btn,
    .modal,
    .add-task-btn,
    .quick-buttons {
        display: none !important;
    }

    body {
        background: white;
        color: black;
        font-size: 12pt;
        line-height: 1.4;
    }

    .container {
        max-width: none;
        padding: 0;
    }

    .step-content,
    .project-header {
        box-shadow: none;
        border: 1px solid #ddd;
        break-inside: avoid;
        margin-bottom: 20pt;
    }

    .task {
        break-inside: avoid;
        margin-bottom: 10pt;
        border: 1px solid #ccc;
        background: white;
    }

    .print-view {
        display: block !important;
    }

    .print-header {
        text-align: center;
        margin-bottom: 30pt;
        border-bottom: 2pt solid #333;
        padding-bottom: 10pt;
    }

    .print-header h1 {
        font-size: 18pt;
        margin-bottom: 5pt;
    }

    .print-meta {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20pt;
        margin-bottom: 20pt;
        font-size: 11pt;
    }

    .print-section {
        break-before: page;
        margin-bottom: 20pt;
    }

    .print-section h2 {
        font-size: 14pt;
        color: #333;
        border-bottom: 1pt solid #333;
        padding-bottom: 5pt;
        margin-bottom: 15pt;
    }

    .print-task {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 8pt;
        border-bottom: 1pt solid #eee;
        break-inside: avoid;
    }

    .print-task:last-child {
        border-bottom: none;
    }

    .print-task-title {
        font-weight: bold;
        flex: 1;
        margin-right: 10pt;
    }

    .print-task-meta {
        text-align: right;
        font-size: 10pt;
        color: #666;
    }

    .print-task-dates {
        display: flex;
        flex-direction: column;
        gap: 2pt;
    }

    .print-task-notes {
        font-size: 10pt;
        color: #666;
        margin-top: 5pt;
        font-style: italic;
    }

    h1, h2, h3, h4, h5, h6 {
        color: black !important;
    }
}

/* Communication Toolkit Styles */
.communication-toolkit {
    margin: 2rem 0;
}

.communication-templates {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.communication-checklist {
    margin-top: 1.5rem;
}

.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 152, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-item:hover {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 152, 0, 0.2);
}

.checkbox-item input[type="checkbox"] {
    margin: 0;
    transform: scale(1.2);
}

.checkbox-item span {
    flex: 1;
    color: #2e7d32;
    font-weight: 500;
    line-height: 1.4;
}

/* Template Content Styles */
.template-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.template-content h5 {
    color: #2e7d32;
    margin: 1.5rem 0 0.75rem 0;
    font-weight: 600;
    font-size: 1.1rem;
}

.template-content h5:first-child {
    margin-top: 0;
}

.template-content ul {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
}

.template-content li {
    margin: 0.5rem 0;
    line-height: 1.4;
}

.faq-item {
    margin: 1.5rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    border-radius: 12px;
    border-left: 4px solid #4caf50;
}

.faq-item h5 {
    color: #2e7d32;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.faq-item p {
    margin: 0;
    color: #2d3748;
    line-height: 1.5;
}

/* Stakeholder Matrix */
.stakeholder-matrix {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.1);
}

.stakeholder-matrix thead {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    color: white;
}

.stakeholder-matrix th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.stakeholder-matrix td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e8f5e9;
    color: #2d3748;
}

.stakeholder-matrix tbody tr:hover {
    background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e9 100%);
}

.stakeholder-matrix tbody tr:last-child td {
    border-bottom: none;
}

.stakeholder-matrix .high {
    color: #c62828;
    font-weight: 600;
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border-radius: 6px;
    text-align: center;
}

.stakeholder-matrix .medium {
    color: #ef6c00;
    font-weight: 600;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-radius: 6px;
    text-align: center;
}

/* Responsive adjustments for communication toolkit */
@media (max-width: 768px) {
    .communication-templates {
        grid-template-columns: 1fr;
    }

    .stakeholder-matrix {
        font-size: 0.875rem;
    }

    .stakeholder-matrix th,
    .stakeholder-matrix td {
        padding: 0.5rem;
    }
}

/* Fresh, light design optimized for all users */