
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

:root {
    --primary: black;
    --light-blue: #e0ecff;
    --bg-gradient: linear-gradient(to right, #f9fafb, #ddebfd);
    --text-color: #0f172a;
    --feature-color: #334155;
    --header-bg: white;
    --title-color: #1e3a8a;
    --upload-bg: white;
    --upload-border: #575c68;;
    --overlay-bg: rgba(255, 255, 255, 0.85);
    --overlay-text: #1e293b;
}


body {
    background-image: url('img/whitebackground.png');
    
}

body.loaded {
    opacity: 1;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 2rem;  
    /* background-color: var(--header-bg); */
    background-image: url('img/whitebackground.png');
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: background 0.3s;
}

.main {
    margin-top: 30px;
    /* max-width: 1400px; */
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    gap: 4rem;
    padding: 0 4px;
    flex-wrap: wrap;
    justify-content: space-between;
}

#title {
    text-decoration: none;
    font-size: 1.5rem;
    color: black;
    font-weight: 600;
    transition: color 0.3s ease;
}

.header-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;  /* ✅ removed padding */
}

.logo img {
    height: 25px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-icon {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.user-icon:hover {
    background-color: #575c68;
}

.user-icon .material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
    font-size: 24px;
}

.menu-options {
    position: absolute;
    top: 100%; /* appear directly below the icon */
    right: 0;  /* align to the right edge of the icon */
    background: white;
    border: 1px solid #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    display: none;
    flex-direction: column;
    min-width: 150px;
    margin-top: 5px; /* small gap for breathing room */
    z-index: 999;
}

.menu-options a {
    padding: 10px;
    text-decoration: none;
    color: #0f172a;
    transition: background 0.2s ease;
}

.menu-options a:hover {
    background: #edeeeeb6;
}

