/* Header styling */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding: 0 20px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-title {
    font-weight: 600;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Reset all link styles in header */
.header a,
.header-actions a,
.header .material-symbols-outlined {
    text-decoration: none;
    border: none;
    outline: none;
    box-shadow: none;
    color: inherit;
}

/* Header icon links */
.header-actions a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.header-actions a:hover {
    background-color: rgba(0,0,0,0.05);
    border-radius: 50%;
}

/* Icon styling */
.material-symbols-outlined {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
} 