* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
    color: #2c3e50;
}

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

h1 {
    text-align: center;
    margin: 3rem 0 2rem;
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: 600;
    padding-bottom: 0.5rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.category-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    position: absolute;
    top: -46px;
    right: -15px;
    width: 350px;
    max-height: 150px;
    overflow-y: auto;
    padding: 1rem;
    z-index: 2;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    align-items: flex-start;
    margin-bottom: 1rem;
}

.category-item {
    font-size: 0.85rem;
    color: #34495e;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #f8f9fa;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    line-height: 1;
    margin: 0.25rem;
    white-space: nowrap;
}

.category-item:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

.category-color-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.wheel-container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 4rem;
    margin-left: 6rem;
    position: relative;
    gap: 8rem;
    padding-top: 3rem;
}

.year-wheel {
    width: 800px;
    height: 800px;
    position: relative;
    border-radius: 50%;
    border: 1px solid #34495e;
    background: transparent;
    flex-shrink: 0;
}

.circle {
    position: absolute;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.circle-1 {
    width: 100%;
    height: 100%;
    border: 1px solid #eee;
}

.circle-2 {
    width: 75%;
    height: 75%;
    border: 1px solid #eee;
}

.circle-3 {
    width: 50%;
    height: 50%;
    border: 1px solid #eee;
}

.month-label {
    position: absolute;
    transform-origin: 50% 50%;
    left: 110%;
    top: 50%;
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
    color: #34495e;
    white-space: nowrap;
    transform: translate(-50%, -50%) translateX(450px);
    transition: all 0.3s ease;
}

.month-dates {
    display: none;
}

.month-section {
    position: absolute;
    width: 50%;
    height: 2px;
    background: #e0e0e0;
    transform-origin: 0 50%;
    left: 50%;
    top: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.month-section:hover {
    background: #1a73e8;
    height: 3px;
    box-shadow: 0 0 8px rgba(26, 115, 232, 0.4);
}

.selected-month .month-section {
    background: #1a73e8;
    height: 4px;
    box-shadow: 0 0 12px rgba(26, 115, 232, 0.5);
}

.selected-month .month-label {
    color: #1a73e8;
    font-weight: 700;
    transform: translate(-50%, -50%) translateX(450px) scale(1.1);
    text-shadow: 0 0 1px rgba(26, 115, 232, 0.2);
}

.task-marker {
    position: absolute;
    padding: 0.4rem 0.8rem;
    border-radius: 3px;
    font-size: 0.8rem;
    color: white;
    cursor: pointer;
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: rgba(52, 152, 219, 0.9);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s, max-width 0.3s ease;
    z-index: 1;
}

.task-marker:hover {
    transform: translate(-50%, -50%) scale(1.1) !important;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
    z-index: 100;
    filter: brightness(1.1);
    max-width: none;
    white-space: nowrap;
    overflow: visible;
}

.task-marker::after {
    content: '✎';
    margin-left: 0.5rem;
    opacity: 0;
    transition: opacity 0.2s;
}

.task-marker:hover::after {
    opacity: 1;
}

.task-marker .task-details-tooltip {
    display: none;
    position: absolute;
    background: white;
    color: #2c3e50;
    padding: 0.8rem;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    width: max-content;
    max-width: 250px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0.5rem;
    font-size: 0.85rem;
    line-height: 1.4;
    white-space: normal;
    z-index: 101;
}

.task-marker.show-details .task-details-tooltip {
    display: block;
}

.task-marker .task-actions {
    display: none;
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.task-marker:hover .task-actions {
    display: flex;
}

.current-month-info {
    position: relative;
    width: 350px;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 50px;
}

.info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.info-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.info-header .secondary-button {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
}

.add-task-button {
    width: 100%;
    margin-top: 1rem;
    padding: 0.8rem;
    background: #f5f5f5;
    color: #34495e;
    border: 2px dashed #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.add-task-button:hover {
    background: #e5e5e5;
    border-color: #bbb;
}

.task-form {
    max-width: 600px;
    margin: 2rem auto;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

select, input[type="text"] {
    padding: 0.8rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 0.9rem;
}

textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 0.9rem;
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

button {
    background: #1a73e8;
    color: white;
    border: none;
    cursor: pointer;
    padding: 0.8rem 1rem;
    border-radius: 4px;
    font-weight: 500;
}

.current-task {
    margin: 0.5rem 0;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 4px;
    border-left: 4px solid #3498db;
    font-size: 0.9rem;
    transition: transform 0.2s;
    position: relative;
}

.task-title {
    font-weight: 500;
    margin: 0.5rem 0;
    color: #2c3e50;
}

.task-details {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid #eee;
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
    white-space: pre-line;
}

.current-task:hover {
    transform: translateX(5px);
    background: #f0f0f0;
}

.current-task:hover .task-actions {
    opacity: 1;
}

.task-actions {
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.2s;
}

.task-action-button {
    background: none;
    border: none;
    color: #666;
    padding: 0.4rem;
    cursor: pointer;
    transition: color 0.2s;
}

.task-action-button:hover {
    color: #1a73e8;
    background: none;
}

.task-action-button.delete:hover {
    color: #e74c3c;
}

.current-task strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 0.2rem;
}

.color-picker-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

input[type="color"] {
    width: 50px;
    height: 40px;
    padding: 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background: #1557b0;
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row > * {
    flex: 1;
}

.secondary-button {
    background: #f5f5f5;
    color: #34495e;
    border: 1px solid #ddd;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
}

.secondary-button:hover {
    background: #e5e5e5;
}

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

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 8px;
    min-width: 400px;
    max-width: 600px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.modal-buttons button {
    flex: 1;
}

.category-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem;
    margin: 0.5rem 0;
    background: #f5f5f5;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.category-list-item:hover {
    background: #f0f0f0;
}

.category-color-preview {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 0.8rem;
}

.category-actions {
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.category-list-item:hover .category-actions {
    opacity: 1;
}

.delete-category {
    color: #e74c3c;
    cursor: pointer;
    padding: 0.2rem 0.5rem;
}

.week-indicator {
    position: absolute;
    width: 2px;
    height: 10px;
    background: #ddd;
    transform-origin: 50% 0;
}

.task-week {
    font-size: 0.8rem;
    color: #666;
    margin: 0.2rem 0;
}

#week-select {
    font-weight: 500;
    max-height: 300px;
}

#week-select optgroup {
    font-weight: bold;
    color: #34495e;
    background: #f8f9fa;
    padding: 0.5rem;
}

#week-select option {
    padding: 0.8rem;
    color: #2c3e50;
    background: white;
}

#week-select option:hover {
    background: #f0f7ff;
}

.icon-button {
    background: none;
    border: none;
    color: #34495e;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.icon-button:hover {
    background: #f5f5f5;
    color: #1a73e8;
    transform: rotate(45deg);
}

.icon-button i {
    font-size: 1.2rem;
}

.editable-title {
    cursor: pointer;
    position: relative;
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.editable-title:hover {
    background-color: #f5f5f5;
}

.editable-title:hover::after {
    content: '✎';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #666;
}

.editable-title.editing {
    background-color: #fff;
    outline: 2px solid #1a73e8;
    cursor: text;
}

.editable-title.editing:hover::after {
    display: none;
}

#page-title.editable-title {
    text-align: center;
    margin: 40px auto;
    padding: 20px 0;
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.all-tasks-section {
    margin: 8rem 0 4rem;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.all-tasks-section h2 {
    margin-bottom: 2rem;
    color: #2c3e50;
    font-size: 1.8rem;
}

.tasks-filters {
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
}

.filter-select {
    padding: 0.8rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 0.9rem;
    min-width: 200px;
}

.all-tasks-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.task-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    border-left: 4px solid;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.task-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.task-card .category-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    display: block;
}

.task-card .task-date {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1rem;
    display: block;
}

.task-card .task-description {
    color: #34495e;
    line-height: 1.5;
}

.task-card .task-actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    opacity: 0;
    transition: opacity 0.2s;
}

.task-card:hover .task-actions {
    opacity: 1;
}

.header-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 20px;
    z-index: 100;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(230, 230, 230, 0.7);
    transition: transform 0.3s ease;
}

.header-actions.hidden {
    transform: translateY(-150%);
}

.wheel-selector {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.wheel-select {
    padding: 0.8rem 1.2rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    min-width: 220px;
    background: #f8f9fa;
    transition: all 0.2s ease;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
}

.wheel-select:hover, .wheel-select:focus {
    border-color: #1a73e8;
    background-color: white;
    box-shadow: 0 2px 8px rgba(26,115,232,0.1);
}

.import-export {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.action-button {
    background: #f8f9fa;
    color: #34495e;
    border: none;
    padding: 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.action-button i {
    font-size: 1.1rem;
}

.action-button:hover {
    background: #e8f0fe;
    color: #1a73e8;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(26,115,232,0.1);
}

.action-button.primary {
    background: #1a73e8;
    color: white;
}

.action-button.primary:hover {
    background: #1557b0;
    box-shadow: 0 4px 12px rgba(26,115,232,0.2);
}

.action-button.danger {
    color: #e74c3c;
}

.action-button.danger:hover {
    background: #fde8e8;
    color: #e74c3c;
}

.beta-badge {
    background-color: #1a73e8;
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(26,115,232,0.2);
}

.site-footer {
    margin-top: 4rem;
    padding: 2rem 0;
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-footer p {
    color: #2c3e50;
    font-size: 0.9rem;
    margin: 0;
}

.site-footer a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: #1557b0;
    text-decoration: underline;
}

/* Velkomstdialog styling */
.welcome-modal .modal-content {
    max-width: 600px;
    padding: 2.5rem;
}

.welcome-modal h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center;
}

.welcome-modal h3 {
    color: #34495e;
    margin: 1.5rem 0 1rem;
    font-size: 1.2rem;
}

.welcome-text {
    color: #2c3e50;
    line-height: 1.6;
}

.welcome-text ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.welcome-text li {
    margin: 1rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.welcome-text li strong {
    color: #1a73e8;
}

.welcome-footer {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.dont-show-again {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
    cursor: pointer;
}

.dont-show-again input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.primary-button {
    background: #1a73e8;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.primary-button:hover {
    background: #1557b0;
}

.info-box {
    background-color: #f8f9fa;
    border-left: 4px solid #1a73e8;
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.info-box p {
    margin: 0;
    color: #2c3e50;
}

/* Responsiv design for mindre skjermer */
@media screen and (max-width: 1400px) {
    .wheel-container {
        gap: 4rem;
    }

    .year-wheel {
        width: min(700px, 90vw);
        height: min(700px, 90vw);
    }

    .month-label {
        transform: translate(-50%, -50%) translateX(calc(min(700px, 90vw) / 2 + 20px));
    }

    .selected-month .month-label {
        transform: translate(-50%, -50%) translateX(calc(min(700px, 90vw) / 2 + 20px)) scale(1.1);
    }
}

@media screen and (max-width: 1200px) {
    .wheel-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        margin: 0 auto 2rem;
        padding: 1rem;
    }

    .current-month-info {
        width: 100%;
        max-width: 600px;
        margin: 1rem auto;
        margin-top: 120px;
    }

    .category-legend {
        position: static;
        width: 100%;
        max-width: 600px;
        margin: 0 auto 1.5rem;
        border-radius: 8px;
        justify-content: center;
        padding: 1rem;
        max-height: 120px;
    }

    .year-wheel {
        width: min(600px, 85vw);
        height: min(600px, 85vw);
        margin: 0 auto;
    }

    .month-label {
        z-index: 1;
        transform: translate(-50%, -50%) translateX(calc(min(600px, 85vw) / 2 + 20px));
        font-size: 1rem;
    }

    .selected-month .month-label {
        transform: translate(-50%, -50%) translateX(calc(min(600px, 85vw) / 2 + 20px)) scale(1.1);
    }

    .all-tasks-section {
        margin: 2rem auto;
        max-width: 800px;
    }

    .tasks-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .tasks-filters {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .filter-select {
        flex: 1;
        min-width: 200px;
    }

    .all-tasks-list {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }

    .wheel-container {
        padding-top: 0;
    }

    .current-month-info {
        margin-top: 1.5rem;
    }
}

@media screen and (max-width: 900px) {
    .year-wheel {
        width: min(550px, 85vw);
        height: min(550px, 85vw);
    }

    .month-label {
        transform: translate(-50%, -50%) translateX(calc(min(550px, 85vw) / 2 + 15px));
    }

    .selected-month .month-label {
        transform: translate(-50%, -50%) translateX(calc(min(550px, 85vw) / 2 + 15px)) scale(1.1);
    }

    .all-tasks-list {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media screen and (max-width: 800px) {
    .wheel-container {
        margin: 2rem 0;
        padding: 1rem;
        gap: 1rem;
    }

    .current-month-info {
        margin-top: 120px;
        width: 100%;
    }

    .all-tasks-section {
        padding: 1rem;
    }

    .all-tasks-list {
        grid-template-columns: 1fr;
    }

    .year-wheel {
        width: min(500px, 80vw);
        height: min(500px, 80vw);
    }

    .month-label {
        font-size: 0.9rem;
        transform: translate(-50%, -50%) translateX(calc(40vw + 15px));
    }

    .selected-month .month-label {
        transform: translate(-50%, -50%) translateX(calc(40vw + 15px)) scale(1.1);
    }

    .task-marker {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
        max-width: 100px;
    }

    .header-actions {
        position: relative;
        top: 0;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        margin: 1rem 0;
    }

    .wheel-selector {
        width: 100%;
    }

    .wheel-select {
        width: 100%;
    }

    .import-export {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .action-button {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }

    .tasks-filters {
        flex-direction: column;
    }

    .filter-select {
        width: 100%;
    }

    .category-legend {
        position: relative;
        margin: 1rem auto;
        padding: 0.5rem;
        width: 100%;
        right: 0;
        max-height: 100px;
    }

    .wheel-container {
        padding-top: 1rem;
    }
}

@media screen and (max-width: 600px) {
    .year-wheel {
        width: min(400px, 90vw);
        height: min(400px, 90vw);
    }

    .month-label {
        transform: translate(-50%, -50%) translateX(calc(min(400px, 90vw) / 2 + 10px));
        font-size: 0.8rem;
    }

    .selected-month .month-label {
        transform: translate(-50%, -50%) translateX(calc(min(400px, 90vw) / 2 + 10px)) scale(1.1);
    }

    .container {
        padding: 15px;
    }

    h1 {
        margin: 1.5rem 0;
    }

    .modal-content {
        min-width: auto;
        width: 90%;
        padding: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .wheel-container {
        padding: 0.5rem;
        margin: 1.5rem 0 2rem;
    }

    .current-month-info {
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }

    .all-tasks-section {
        margin: 1rem 0;
    }

    .all-tasks-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .year-wheel {
        width: min(350px, 85vw);
        height: min(350px, 85vw);
    }

    .month-label {
        font-size: 0.75rem;
        transform: translate(-50%, -50%) translateX(calc(42.5vw + 10px));
    }

    .selected-month .month-label {
        transform: translate(-50%, -50%) translateX(calc(42.5vw + 10px)) scale(1.1);
    }

    .task-marker {
        padding: 0.2rem 0.4rem;
        font-size: 0.7rem;
        max-width: 80px;
    }

    h1 {
        margin: 1.5rem 0;
    }

    .category-legend {
        margin: 1rem auto;
        padding: 0.8rem;
    }
}

/* Stiler for guide-tour */
.guide-tooltip {
    position: absolute;
    background: #ffffff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    max-width: 300px;
    border: 2px solid #4a90e2;
    transition: all 0.3s ease;
}

.guide-tooltip .buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.guide-tooltip button {
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.guide-tooltip .next-btn {
    background: #4a90e2;
    color: white;
}

.guide-tooltip .skip-btn {
    background: #f5f5f5;
    color: #666;
}

.pdf-export .category-legend {
    position: absolute;
    top: -46px !important;
    right: -15px !important;
    width: 350px !important;
    margin: 0 !important;
}

.pdf-export {
    position: relative !important;
} 