/* /Components/FolderComponent.razor.rz.scp.css */
.hover-elevation:hover[b-j8efw9ppn5] {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
}
.hover-elevation:hover[b-j8efw9ppn5] {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
}
.folder-card[b-j8efw9ppn5] {
    background-color: #f8f9fa; /* light gray background */
    color: #333;               /* dark text for contrast */
}

.text-primary[b-j8efw9ppn5] {
    color: #1976d2; /* Material blue */
}
.fill-height[b-j8efw9ppn5] {
    height: 100%;
}
/* /Components/NoteCardComponent.razor.rz.scp.css */
:root[b-l005zhm0a7] {
    --header-border: #e0e0e0;
    --sidebar-active: #feefc3;
    --note-shadow: rgba(0, 0, 0, 0.1);
    --hover-bg: rgba(0, 0, 0, 0.04);
    --primary-color: #1a73e8;
    --note-colors: #fff, #f28b82, #fbbc04, #fff475, #ccff90, #a7ffeb, #cbf0f8, #aecbfa, #d7aefb, #fdcfe8, #e6c9a8;
}

*[b-l005zhm0a7] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body[b-l005zhm0a7] {
    font-family: 'Roboto', sans-serif;
    background-color: #fff;
}

/* Header Styles */
header[b-l005zhm0a7] {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 64px;
    padding: 0 16px;
    border-bottom: 1px solid var(--header-border);
    background: white;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo[b-l005zhm0a7] {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 22px;
    color: #5f6368;
    min-width: 200px;
}

.search-bar[b-l005zhm0a7] {
    flex: 1;
    max-width: 720px;
    background: #f1f3f4;
    border-radius: 8px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    height: 48px;
    min-width: 120px;
}

.search-bar input[b-l005zhm0a7] {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0 16px;
    font-size: 16px;
    outline: none;
}

.user-menu img[b-l005zhm0a7] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

/* Sidebar Styles */
.sidebar[b-l005zhm0a7] {
    width: 280px;
    position: fixed;
    left: 0;
    top: 64px;
    bottom: 0;
    padding: 12px 0;
    background: white;
    z-index: 99;
}

.nav-item[b-l005zhm0a7] {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 8px 24px;
    margin: 0 8px;
    border-radius: 0 24px 24px 0;
    cursor: pointer;
    color: #202124;
    transition: background 0.2s;
}

.nav-item:hover[b-l005zhm0a7],
.nav-item.active[b-l005zhm0a7] {
    background-color: var(--hover-bg);
}

.nav-item.active[b-l005zhm0a7] {
    background-color: var(--sidebar-active);
    font-weight: 500;
}

/* Masonry Layout */
.notes-grid[b-l005zhm0a7] {
    column-width: 240px;
    column-gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 16px;
}

.note-card[b-l005zhm0a7] {
    break-inside: avoid;
    margin-bottom: 24px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
    position: relative;
    transition: all 0.2s ease;
    background: var(--note-color, white);
}

.note-card:hover[b-l005zhm0a7] {
    box-shadow: 0 2px 4px var(--note-shadow);
    transform: translateY(-2px);
}

.note-title[b-l005zhm0a7] {
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
    color: #202124;
}

.note-content[b-l005zhm0a7] {
    font-size: 13px;
    color: #5f6368;
    line-height: 1.5;
    margin-bottom: 16px;
}

.note-actions[b-l005zhm0a7] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transition: opacity 0.2s;
}

.note-card:hover .note-actions[b-l005zhm0a7] {
    opacity: 1;
}

.color-palette[b-l005zhm0a7] {
    display: none;
    position: absolute;
    bottom: 40px;
    left: 8px;
    background: white;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.color-option[b-l005zhm0a7] {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin: 4px;
    cursor: pointer;
    border: 2px solid transparent;
}

.color-option:hover[b-l005zhm0a7] {
    border-color: rgba(0,0,0,0.2);
}

/* Floating Action Button */
.fab[b-l005zhm0a7] {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: var(--primary-color);
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: all 0.2s;
    z-index: 101;
}

.fab:hover[b-l005zhm0a7] {
    background: #1557b0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .notes-grid[b-l005zhm0a7] {
        column-width: 200px;
        column-gap: 16px;
    }
}

@media (max-width: 768px) {
    header[b-l005zhm0a7] {
        gap: 0.5rem;
        padding: 0 8px;
    }

    .logo[b-l005zhm0a7] {
        min-width: auto;
    }

    .sidebar[b-l005zhm0a7] {
        display: none;
    }

    .notes-grid[b-l005zhm0a7] {
        column-width: 180px;
        padding: 24px 8px;
        margin: 0 8px;
    }

    .content[b-l005zhm0a7] {
        margin-left: 0;
    }

    .fab[b-l005zhm0a7] {
        bottom: 24px;
        right: 24px;
    }
}

@media (max-width: 480px) {
    header[b-l005zhm0a7] {
        height: 56px;
    }

    .search-bar[b-l005zhm0a7] {
        height: 40px;
        padding: 0 8px;
    }

    .search-bar input[b-l005zhm0a7] {
        padding: 0 8px;
        font-size: 14px;
    }

    .notes-grid[b-l005zhm0a7] {
        column-width: 100%;
        column-gap: 0;
    }

    .note-card[b-l005zhm0a7] {
        margin-bottom: 16px;
    }

    .fab[b-l005zhm0a7] {
        width: 48px;
        height: 48px;
        bottom: 16px;
        right: 16px;
    }
}
/* /Components/Popup/AddNewFolderDialogue.razor.rz.scp.css */
/* /Components/Popup/AddNotesDialogue.razor.rz.scp.css */
/* /Components/Popup/AddShortcutDialogue.razor.rz.scp.css */
/* /Components/Popup/DeleteDialogue.razor.rz.scp.css */
/* /Components/Popup/EditNotesDialogue.razor.rz.scp.css */
/* /Components/Popup/EditShortcutDialogue.razor.rz.scp.css */
/* /Components/Popup/FireBaseDialogue.razor.rz.scp.css */
/* /Components/Popup/RenameDialogue.razor.rz.scp.css */
/* /Components/ShortCutCardComponent.razor.rz.scp.css */
:root[b-rvev1n420p] {
    --header-border: #e0e0e0;
    --sidebar-active: #feefc3;
    --note-shadow: rgba(0, 0, 0, 0.1);
    --hover-bg: rgba(0, 0, 0, 0.04);
    --primary-color: #1a73e8;
    --note-colors: #fff, #f28b82, #fbbc04, #fff475, #ccff90, #a7ffeb, #cbf0f8, #aecbfa, #d7aefb, #fdcfe8, #e6c9a8;
}

*[b-rvev1n420p] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body[b-rvev1n420p] {
    font-family: 'Roboto', sans-serif;
    background-color: #fff;
}

/* Header Styles */
header[b-rvev1n420p] {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 64px;
    padding: 0 16px;
    border-bottom: 1px solid var(--header-border);
    background: white;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo[b-rvev1n420p] {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 22px;
    color: #5f6368;
    min-width: 200px;
}

.search-bar[b-rvev1n420p] {
    flex: 1;
    max-width: 720px;
    background: #f1f3f4;
    border-radius: 8px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    height: 48px;
    min-width: 120px;
}

.search-bar input[b-rvev1n420p] {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0 16px;
    font-size: 16px;
    outline: none;
}

.user-menu img[b-rvev1n420p] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

/* Sidebar Styles */
.sidebar[b-rvev1n420p] {
    width: 280px;
    position: fixed;
    left: 0;
    top: 64px;
    bottom: 0;
    padding: 12px 0;
    background: white;
    z-index: 99;
}

.nav-item[b-rvev1n420p] {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 8px 24px;
    margin: 0 8px;
    border-radius: 0 24px 24px 0;
    cursor: pointer;
    color: #202124;
    transition: background 0.2s;
}

.nav-item:hover[b-rvev1n420p],
.nav-item.active[b-rvev1n420p] {
    background-color: var(--hover-bg);
}

.nav-item.active[b-rvev1n420p] {
    background-color: var(--sidebar-active);
    font-weight: 500;
}

/* Masonry Layout */
.notes-grid[b-rvev1n420p] {
    column-width: 240px;
    column-gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 16px;
}

.note-card[b-rvev1n420p] {
    break-inside: avoid;
    margin-bottom: 24px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
    position: relative;
    transition: all 0.2s ease; 
}

.note-card:hover[b-rvev1n420p] {
    box-shadow: 0 2px 4px var(--note-shadow);
    transform: translateY(-2px);
}

.note-title[b-rvev1n420p] {
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
    color: #202124;
}

.note-content[b-rvev1n420p] {
    font-size: 13px;
    color: #5f6368;
    line-height: 1.5;
    margin-bottom: 16px;
}

.note-actions[b-rvev1n420p] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transition: opacity 0.2s;
}

.note-card:hover .note-actions[b-rvev1n420p] {
    opacity: 1;
}

.color-palette[b-rvev1n420p] {
    display: none;
    position: absolute;
    bottom: 40px;
    left: 8px;
    background: white;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.color-option[b-rvev1n420p] {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin: 4px;
    cursor: pointer;
    border: 2px solid transparent;
}

.color-option:hover[b-rvev1n420p] {
    border-color: rgba(0,0,0,0.2);
}

/* Floating Action Button */
.fab[b-rvev1n420p] {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: var(--primary-color);
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: all 0.2s;
    z-index: 101;
}

.fab:hover[b-rvev1n420p] {
    background: #1557b0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .notes-grid[b-rvev1n420p] {
        column-width: 200px;
        column-gap: 16px;
    }
}

@media (max-width: 768px) {
    header[b-rvev1n420p] {
        gap: 0.5rem;
        padding: 0 8px;
    }

    .logo[b-rvev1n420p] {
        min-width: auto;
    }

    .sidebar[b-rvev1n420p] {
        display: none;
    }

    .notes-grid[b-rvev1n420p] {
        column-width: 180px;
        padding: 24px 8px;
        margin: 0 8px;
    }

    .content[b-rvev1n420p] {
        margin-left: 0;
    }

    .fab[b-rvev1n420p] {
        bottom: 24px;
        right: 24px;
    }
}

@media (max-width: 480px) {
    header[b-rvev1n420p] {
        height: 56px;
    }

    .search-bar[b-rvev1n420p] {
        height: 40px;
        padding: 0 8px;
    }

    .search-bar input[b-rvev1n420p] {
        padding: 0 8px;
        font-size: 14px;
    }

    .notes-grid[b-rvev1n420p] {
        column-width: 100%;
        column-gap: 0;
    }

    .note-card[b-rvev1n420p] {
        margin-bottom: 16px;
    }

    .fab[b-rvev1n420p] {
        width: 48px;
        height: 48px;
        bottom: 16px;
        right: 16px;
    }
}
/* /Components/UI/FolderAppBar.razor.rz.scp.css */
.appbar-custom[b-h3oarwq4k7] {
    background-color: #f0f2f5; /* Soft gray-blue, neutral */
    color: #1f1f1f;            /* Strong dark text */
}

.appbar-custom .mud-icon-button[b-h3oarwq4k7] {
    margin-left: 6px;
    margin-right: 6px;
    transition: background-color 0.2s ease;
}

.appbar-custom .mud-icon-button:hover[b-h3oarwq4k7] {
    background-color: rgba(25, 118, 210, 0.1); /* light hover blue */
    border-radius: 8px;
}
/* /Components/UI/LandingFooter.razor.rz.scp.css */
/* /Layout/FolderLayout.razor.rz.scp.css */
.my-custom-class[b-12jh3pzi2k] {
    backdrop-filter: blur(10px);
} 
/* /Layout/FolderNavMenu.razor.rz.scp.css */
/* /Layout/LandingLayout.razor.rz.scp.css */
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-lys8dglik0] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-lys8dglik0] {
    flex: 1;
}

.sidebar[b-lys8dglik0] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-lys8dglik0] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-lys8dglik0]  a, .top-row[b-lys8dglik0]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-lys8dglik0]  a:hover, .top-row[b-lys8dglik0]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-lys8dglik0]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-lys8dglik0] {
        justify-content: space-between;
    }

    .top-row[b-lys8dglik0]  a, .top-row[b-lys8dglik0]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-lys8dglik0] {
        flex-direction: row;
    }

    .sidebar[b-lys8dglik0] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-lys8dglik0] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-lys8dglik0]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-lys8dglik0], article[b-lys8dglik0] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-pwy4hedmm9] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-pwy4hedmm9] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-pwy4hedmm9] {
    font-size: 1.1rem;
}

.bi[b-pwy4hedmm9] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-pwy4hedmm9] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-pwy4hedmm9] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-pwy4hedmm9] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-pwy4hedmm9] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-pwy4hedmm9] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-pwy4hedmm9] {
        padding-bottom: 1rem;
    }

    .nav-item[b-pwy4hedmm9]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-pwy4hedmm9]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-pwy4hedmm9]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-pwy4hedmm9] {
        display: none;
    }

    .collapse[b-pwy4hedmm9] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-pwy4hedmm9] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/Folder.razor.rz.scp.css */
:root[b-4sm25czyc9] {
    --header-border: #e0e0e0;
    --sidebar-active: #feefc3;
    --note-shadow: rgba(0, 0, 0, 0.1);
    --hover-bg: rgba(0, 0, 0, 0.04);
    --primary-color: #1a73e8;
    --note-colors: #fff, #f28b82, #fbbc04, #fff475, #ccff90, #a7ffeb, #cbf0f8, #aecbfa, #d7aefb, #fdcfe8, #e6c9a8;
}

*[b-4sm25czyc9] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body[b-4sm25czyc9] {
    font-family: 'Roboto', sans-serif;
    background-color: #fff;
}

/* Header Styles */
header[b-4sm25czyc9] {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 64px;
    padding: 0 16px;
    border-bottom: 1px solid var(--header-border);
    background: white;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo[b-4sm25czyc9] {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 22px;
    color: #5f6368;
    min-width: 200px;
}

.search-bar[b-4sm25czyc9] {
    flex: 1;
    max-width: 720px;
    background: #f1f3f4;
    border-radius: 8px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    height: 48px;
    min-width: 120px;
}

.search-bar input[b-4sm25czyc9] {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0 16px;
    font-size: 16px;
    outline: none;
}

.user-menu img[b-4sm25czyc9] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

/* Sidebar Styles */
.sidebar[b-4sm25czyc9] {
    width: 280px;
    position: fixed;
    left: 0;
    top: 64px;
    bottom: 0;
    padding: 12px 0;
    background: white;
    z-index: 99;
}

.nav-item[b-4sm25czyc9] {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 8px 24px;
    margin: 0 8px;
    border-radius: 0 24px 24px 0;
    cursor: pointer;
    color: #202124;
    transition: background 0.2s;
}

.nav-item:hover[b-4sm25czyc9],
.nav-item.active[b-4sm25czyc9] {
    background-color: var(--hover-bg);
}

.nav-item.active[b-4sm25czyc9] {
    background-color: var(--sidebar-active);
    font-weight: 500;
}

/* Masonry Layout */
.notes-grid[b-4sm25czyc9] {
    column-width: 240px;
    column-gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 16px;
}

.note-card[b-4sm25czyc9] {
    break-inside: avoid;
    margin-bottom: 24px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
    position: relative;
    transition: all 0.2s ease;
    background: var(--note-color, white);
}

.note-card:hover[b-4sm25czyc9] {
    box-shadow: 0 2px 4px var(--note-shadow);
    transform: translateY(-2px);
}

.note-title[b-4sm25czyc9] {
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
    color: #202124;
}

.note-content[b-4sm25czyc9] {
    font-size: 13px;
    color: #5f6368;
    line-height: 1.5;
    margin-bottom: 16px;
}

.note-actions[b-4sm25czyc9] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transition: opacity 0.2s;
}

.note-card:hover .note-actions[b-4sm25czyc9] {
    opacity: 1;
}

.color-palette[b-4sm25czyc9] {
    display: none;
    position: absolute;
    bottom: 40px;
    left: 8px;
    background: white;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.color-option[b-4sm25czyc9] {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin: 4px;
    cursor: pointer;
    border: 2px solid transparent;
}

.color-option:hover[b-4sm25czyc9] {
    border-color: rgba(0,0,0,0.2);
}

/* Floating Action Button */
.fab[b-4sm25czyc9] {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: var(--primary-color);
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: all 0.2s;
    z-index: 101;
}

.fab:hover[b-4sm25czyc9] {
    background: #1557b0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .notes-grid[b-4sm25czyc9] {
        column-width: 200px;
        column-gap: 16px;
    }
}

@media (max-width: 768px) {
    header[b-4sm25czyc9] {
        gap: 0.5rem;
        padding: 0 8px;
    }

    .logo[b-4sm25czyc9] {
        min-width: auto;
    }

    .sidebar[b-4sm25czyc9] {
        display: none;
    }

    .notes-grid[b-4sm25czyc9] {
        column-width: 180px;
        padding: 24px 8px;
        margin: 0 8px;
    }

    .content[b-4sm25czyc9] {
        margin-left: 0;
    }

    .fab[b-4sm25czyc9] {
        bottom: 24px;
        right: 24px;
    }
}

@media (max-width: 480px) {
    header[b-4sm25czyc9] {
        height: 56px;
    }

    .search-bar[b-4sm25czyc9] {
        height: 40px;
        padding: 0 8px;
    }

    .search-bar input[b-4sm25czyc9] {
        padding: 0 8px;
        font-size: 14px;
    }

    .notes-grid[b-4sm25czyc9] {
        column-width: 100%;
        column-gap: 0;
    }

    .note-card[b-4sm25czyc9] {
        margin-bottom: 16px;
    }

    .fab[b-4sm25czyc9] {
        width: 48px;
        height: 48px;
        bottom: 16px;
        right: 16px;
    }
}
/* /Pages/Landing.razor.rz.scp.css */
