
:root {
    --background: #050810;
    --card: #0f172a;
    --purple: #a855f7;
    --cian: #22d3ee;
    --white: #f8fafc;
}

body {
    background-color: var(--background);
    color: var(--white);
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 20px; 
}



.notes-container {
    width: 100%;
    max-width: 600px;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
}

.note-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(168, 85, 247, 0.2); 
    transition: 0.3s;
}

.note-row:hover {
    background: rgba(34, 211, 238, 0.03); 
}

.note-info h3 {
    font-size: 1.1rem;
    color: var(--white);
}

.note-info p {
    font-size: 0.85rem;
    color: var(--purple);
    margin-top: 5px;
}


.status {
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status.in-progress {
    color: var(--cian);
    text-shadow: 0 0 8px var(--cian);
}

.status.pending {
    color: #475569; 
}

.status.complete {
    color: #4ade80;  
    text-shadow: 0 0 8px #4ade80;
}