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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to bottom, #282d95 0%, #000000 100%);
    min-height: 100vh;
    overflow: hidden;
}

/* Page Management */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* Login Page */
#login-page {
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
}

#login-page.active {
    display: flex !important;
}

.login-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    text-align: center;
    min-width: 350px;
}

.login-logo {
    max-width: 79px;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    display: block;
}

.login-container p {
    color: #666;
    margin-bottom: 2rem;
}

#login-form input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

#login-form input:focus {
    outline: none;
    border-color: #667eea;
}

#login-form button {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

#login-btn {
    background: #667eea;
    color: white;
}

#login-btn:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

#signup-btn {
    background: #f0f0f0;
    color: #333;
}

#signup-btn:hover {
    background: #e0e0e0;
}

.error {
    color: #e74c3c;
    margin-top: 10px;
    font-size: 0.9rem;
    min-height: 20px;
}

/* Board Page */
#board-page {
    flex-direction: column;
    height: 100vh;
}

#board-page.active {
    display: flex !important;
}

.board-header {
    background: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.header-logo {
    height: 50px;
    width: auto;
    display: block;
}

.newsroom-title {
    font-size: 1.125rem;
    font-weight: 300;
    color: #333;
    letter-spacing: 2px;
}

.header-controls {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.active-users {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.user-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #667eea;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.user-circle.current-user {
    background: #4caf50;
    border: 2px solid white;
}

.icon-btn {
    width: 36px;
    height: 36px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.icon-btn img {
    height: 18px;
    width: auto;
    display: block;
}

.icon-btn svg {
    width: 18px;
    height: 18px;
}

.icon-btn:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Color Palette */
.color-palette {
    background: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 2rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.reaction-spawners {
    display: flex;
    gap: 0.5rem;
    padding-right: 1rem;
    border-right: 2px solid #e0e0e0;
}

.toolbar-spacer {
    width: 2px;
    height: 36px;
    background: #e0e0e0;
    align-self: center;
}

.reaction-spawn-btn {
    width: 36px;
    height: 36px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.reaction-spawn-btn:hover {
    transform: scale(1.1);
    border-color: #667eea;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

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

.color-btn {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.2rem;
    font-weight: normal;
    color: white;
}

.color-btn.yellow {
    background: #d9e244;
}

.color-btn.pink {
    background: #da38ed;
}

.color-btn.green {
    background: #33e51b;
}

.color-btn.blue {
    background: #4378fd;
}

.color-btn.orange {
    background: #ff8c42;
}

.color-btn.red {
    background: #ff4757;
}

.color-btn.gray {
    background: #d3d3d3;
}

.color-btn.purple {
    background: #a55eea;
}

.color-btn.transparent {
    background: linear-gradient(to bottom, #282d95 0%, #000000 100%);
}

.color-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Board */
.board {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: transparent;
    cursor: grab;
}

/* Selection Rectangle */
.selection-rect {
    position: absolute;
    border: 2px dashed #4a90e2;
    background: rgba(74, 144, 226, 0.1);
    pointer-events: none;
    z-index: 10000;
}

.board.dragging {
    cursor: grabbing;
}

/* Post-it Notes */
.note {
    position: absolute;
    width: 200px;
    min-height: 200px;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    cursor: move;
    transition: box-shadow 0.3s;
    user-select: none;
}

.note:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.note.selected {
    box-shadow: 0 0 0 3px #4a90e2, 0 8px 16px rgba(0,0,0,0.3);
    z-index: 999;
}

.note.grouped {
    /* Hidden by default, only show when selected */
}

.note.grouped.selected {
    border: 2px solid #9b59b6;
}

.note.yellow {
    background: #d9e244;
}

.note.pink {
    background: #da38ed;
}

.note.green {
    background: #33e51b;
}

.note.blue {
    background: #4378fd;
}

.note.orange {
    background: #ff8c42;
}

.note.red {
    background: #ff4757;
}

.note.gray {
    background: #d3d3d3;
}

.note.purple {
    background: #a55eea;
}

.note.transparent {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.note.transparent .note-content {
    color: white;
}

.note-header {
    position: absolute;
    top: 8px;
    right: 8px;
}

.delete-note {
    background: rgba(255, 255, 255, 0.25);
    color: inherit;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    transition: all 0.3s;
}

.delete-note:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.note.yellow .delete-note {
    color: #d9e244;
}

.note.pink .delete-note {
    color: #da38ed;
}

.note.green .delete-note {
    color: #33e51b;
}

.note.blue .delete-note {
    color: #4378fd;
}

.note.orange .delete-note {
    color: #ff8c42;
}

.note.red .delete-note {
    color: #ff4757;
}

.note.gray .delete-note {
    color: #d3d3d3;
}

.note.purple .delete-note {
    color: #a55eea;
}

.note.transparent .delete-note {
    color: white;
}

.note-title {
    width: 100%;
    background: transparent;
    border: none;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    font-size: 16px;
    font-weight: bold;
    outline: none;
    margin-bottom: 5px;
    padding: 0;
}

.note-title::placeholder {
    color: black;
    opacity: 0.5;
}

.note.transparent .note-title {
    color: white;
}

.note.transparent .note-title::placeholder {
    color: white;
    opacity: 0.5;
}

.note-content {
    width: 100%;
    min-height: 150px;
    background: transparent;
    border: none;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    font-size: 14px;
    resize: vertical;
    outline: none;
}

.note-content::placeholder {
    color: black;
    opacity: 0.5;
}

.note.transparent .note-content::placeholder {
    color: white;
    opacity: 0.5;
}

.note-content-display {
    width: 100%;
    min-height: 150px;
    padding: 8px;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    font-size: 14px;
    white-space: pre-wrap;
    word-wrap: break-word;
    cursor: text;
}

.note-content-display a {
    color: #0066cc;
    text-decoration: underline;
    cursor: pointer;
    word-break: break-all;
}

.note-content-display a:hover {
    color: #004499;
    background: rgba(0, 102, 204, 0.1);
}

.note.transparent .note-content-display {
    color: white;
}

.note.transparent .note-content-display a {
    color: #66ccff;
}

.note.transparent .note-content-display a:hover {
    color: #99ddff;
    background: rgba(102, 204, 255, 0.1);
}

.note-initials {
    position: absolute;
    bottom: 8px;
    left: 8px;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    font-size: 11px;
    font-weight: bold;
    opacity: 0.6;
    pointer-events: none;
}

.note.transparent .note-initials {
    color: white;
}

/* Reactions */
.reaction {
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: move;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: all 0.3s;
    z-index: 100;
}

.reaction:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.reaction.anchored {
    cursor: pointer;
}

.reaction-delete {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 18px;
    height: 18px;
    background: none;
    color: black;
    border: none;
    outline: none;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    font-weight: bold;
    padding: 0;
    box-shadow: none;
}

.reaction-delete:hover {
    color: red;
    background: none;
    outline: none;
}

.reaction-counter {
    position: absolute;
    bottom: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    background: red;
    border: none;
    border-radius: 10px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: white;
    padding: 2px 6px;
}

.reaction-counter.active {
    display: flex;
}

/* Text Labels */
.text-label {
    position: absolute;
    font-family: 'Arial Black', sans-serif;
    font-weight: bold;
    cursor: move;
    user-select: none;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    white-space: nowrap;
    z-index: 50;
}

.text-label:hover {
    opacity: 0.8;
}

.text-label.selected {
    outline: 3px solid #4a90e2;
    outline-offset: 3px;
}

.text-label.grouped {
    /* Hidden by default, only show when selected */
}

.text-label.grouped.selected {
    outline: 2px solid #9b59b6;
    outline-offset: 2px;
}

.text-label-delete {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    background: red;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
}

.text-label:hover .text-label-delete {
    display: flex;
}

.text-label-delete:hover {
    background: darkred;
}

/* Images */
.board-image {
    position: absolute;
    cursor: move;
    user-select: none;
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    border-radius: 4px;
    z-index: 50;
    overflow: hidden;
}

.board-image:hover {
    box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

.board-image.selected {
    box-shadow: 0 0 0 3px #4a90e2, 0 8px 16px rgba(0,0,0,0.3);
}

.board-image.grouped {
    /* Hidden by default, only show when selected */
}

.board-image.grouped.selected {
    box-shadow: 0 0 0 3px #9b59b6, 0 8px 16px rgba(0,0,0,0.3);
}

.board-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 2px;
    pointer-events: none;
}

.image-resize-handle {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #4a90e2;
    border: 2px solid white;
    border-radius: 50%;
    display: none;
    z-index: 1001;
}

.board-image:hover .image-resize-handle,
.board-image.selected .image-resize-handle {
    display: block;
}

.image-resize-handle.bottom-right {
    bottom: -6px;
    right: -6px;
    cursor: nwse-resize;
}

.image-resize-handle.bottom-left {
    bottom: -6px;
    left: -6px;
    cursor: nesw-resize;
}

.image-resize-handle.top-right {
    top: -6px;
    right: -6px;
    cursor: nesw-resize;
}

.image-resize-handle.top-left {
    top: -6px;
    left: -6px;
    cursor: nwse-resize;
}

.image-delete {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    background: red;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.board-image:hover .image-delete {
    display: flex;
}

.image-delete:hover {
    background: darkred;
}

/* Arrows */
.arrow {
    position: absolute;
    cursor: move;
    user-select: none;
    z-index: 50;
}

.arrow.selected {
    filter: drop-shadow(0 0 3px #4a90e2);
}

.arrow.grouped {
    /* Hidden by default, only show when selected */
}

.arrow.grouped.selected {
    filter: drop-shadow(0 0 3px #9b59b6);
}

.arrow svg {
    display: block;
    pointer-events: none;
}

.arrow-delete {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    background: red;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.arrow:hover .arrow-delete {
    display: flex;
}

.arrow-delete:hover {
    background: darkred;
}

.arrow-length-handle {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #4a90e2;
    border: 2px solid white;
    border-radius: 50%;
    cursor: ew-resize;
    display: none;
    z-index: 1001;
    top: 50%;
    transform: translateY(-50%);
}

.arrow:hover .arrow-length-handle,
.arrow.selected .arrow-length-handle {
    display: block;
}

.arrow-rotate-handle {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #ff6b6b;
    border: 2px solid white;
    border-radius: 50%;
    cursor: grab;
    display: none;
    z-index: 1001;
    top: 50%;
    left: -7px;
    transform: translateY(-50%);
}

.arrow-rotate-handle:active {
    cursor: grabbing;
}

.arrow:hover .arrow-rotate-handle,
.arrow.selected .arrow-rotate-handle {
    display: block;
}

/* Shapes (Circles and Squares) */
.board-shape {
    position: absolute;
    cursor: move;
    user-select: none;
    z-index: 50;
}

.board-shape:hover {
    opacity: 0.9;
}

.board-shape.selected {
    filter: drop-shadow(0 0 5px #4a90e2);
}

.board-shape.grouped.selected {
    filter: drop-shadow(0 0 5px #9b59b6);
}

.board-shape svg {
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape-delete {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    background: red;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.board-shape:hover .shape-delete {
    display: flex;
}

.shape-delete:hover {
    background: darkred;
}

.shape-resize-handle {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #4a90e2;
    border: 2px solid white;
    border-radius: 50%;
    display: none;
    z-index: 1001;
    cursor: nwse-resize;
}

.shape-resize-handle.bottom-right {
    bottom: -6px;
    right: -6px;
}

.board-shape:hover .shape-resize-handle,
.board-shape.selected .shape-resize-handle {
    display: block;
}

/* Color Picker Modal */
.color-picker-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 1.5rem;
}

.color-picker-choice {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.color-picker-choice:hover {
    transform: scale(1.1);
    border-color: #333;
}

.color-picker-choice.red {
    background: #ff6b6b;
}

.color-picker-choice.orange {
    background: #ffa500;
}

.color-picker-choice.yellow {
    background: #ffeb3b;
}

.color-picker-choice.green {
    background: #4caf50;
}

.color-picker-choice.blue {
    background: #2196f3;
}

.color-picker-choice.purple {
    background: #9c27b0;
}

.color-picker-choice.pink {
    background: #e91e63;
}

.color-picker-choice.gray {
    background: #9e9e9e;
}

/* Text Document Icon */
.text-doc {
    position: absolute;
    width: 80px;
    cursor: move;
    user-select: none;
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.3s;
}

.doc-icon {
    font-size: 48px;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.doc-info {
    width: 100%;
    margin-top: 4px;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 2px 4px;
    border-radius: 4px;
}

.doc-info-title {
    font-size: 8px;
    color: white;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.doc-info-author {
    font-size: 7px;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.text-doc:hover .doc-icon {
    transform: scale(1.1);
}

.text-doc.selected .doc-icon {
    filter: drop-shadow(0 0 4px #667eea) drop-shadow(0 0 8px #667eea);
}

.text-doc-delete {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    background: red;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.text-doc:hover .text-doc-delete {
    display: flex;
}

.text-doc-delete:hover {
    background: darkred;
}

/* Text Document Modals */
.text-doc-form {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#text-doc-title,
#text-doc-author {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
}

#text-doc-content {
    width: 100%;
    min-height: 300px;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
}

.text-doc-viewer {
    padding: 2rem;
    max-height: 70vh;
    overflow-y: auto;
}

.doc-author {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.doc-content {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    white-space: pre-wrap;
}

/* Text Label Modal */
.text-label-form {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

#text-label-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
}

.text-color-picker label,
.text-size-picker label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.color-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.color-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.color-option:hover {
    transform: scale(1.1);
}

.color-option.selected {
    border-color: #667eea;
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

#text-size-select {
    width: 100%;
    padding: 10px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
}

.create-btn {
    padding: 12px 24px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.create-btn:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}

.modal-content.large {
    max-width: 50%;
    max-height: 90vh;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 2px solid #e0e0e0;
}

.modal-header h2 {
    color: #667eea;
}

.close-modal, .close-archive-view {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
}

.close-modal:hover, .close-archive-view:hover {
    color: #333;
}

/* Archives List */
.archives-list {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.archive-item {
    background: #f8f8f8;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.archive-info {
    flex: 1;
}

.archive-date {
    font-weight: 600;
    color: #667eea;
    margin-bottom: 5px;
}

.archive-notes-count {
    font-size: 0.9rem;
    color: #666;
}

.delete-archive {
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.delete-archive:hover {
    background: #c0392b;
}

/* Archive Board View */
.archive-board {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    min-height: 500px;
}

.archive-board .note {
    cursor: default;
}

.archive-board .note-content {
    cursor: default;
    resize: none;
}

.empty-state {
    text-align: center;
    padding: 3rem;
    color: #999;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
