/* Base Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
}

/* Page */
body {
    background: linear-gradient(180deg, #f8fafc, #eef2f7);
    color: #0f172a;
    min-height: 100vh;
    padding: 40px 20px;
}

/* Title */
h1 {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 40px;
}

/* Container */
.notes-container {
    max-width: 900px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Card */
.note-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    transition: all 0.25s ease;
}

.note-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

/* Left Section */
.note-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.note-no {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #0f172a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.95rem;
}

.note-title {
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Status */
.note-status {
    font-size: 0.85rem;
    color: #64748b;
    background: #f1f5f9;
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 600px) {
    h1 {
        font-size: 1.8rem;
    }

    .note-card {
        padding: 16px;
    }

    .note-title {
        font-size: 0.95rem;
    }
}

/* Button Base */
.note-btn {
    border: none;
    outline: none;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    white-space: nowrap;
}

/* Disabled (Coming Soon) */
.note-btn.disabled {
    background: #f1f5f9;
    color: #94a3b8;
    cursor: not-allowed;
}

/* Active (Open Notes) */
.note-btn.active {
    background: #0f172a;
    color: #ffffff;
}

/* Hover only for active */
.note-btn.active:hover {
    background: #020617;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(2, 6, 23, 0.25);
}
