body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
}
header {
    width: 150px;
    height: 100vh;
    background-color: #333;
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
}
header h1 {
    margin-top: 0;
    font-size: 24px;
}
section {
    flex-grow: 1;
    padding: 20px;
}
header ul {
    list-style: none;
    padding: 0;
}
header ul li {
    margin-bottom: 15px;
}
header ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}
header ul li a:hover {
    text-decoration: underline;
}

#note-display-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background-color: white;
    padding: 10px;
    z-index: 10;
    border-bottom: 2px solid #ccc;
}

#note-display-header button {
    padding: 8px 12px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    background-color: #007BFF;
    color: white;
    border-radius: 5px;
}

#note-display-header button:hover {
    background-color: #0056b3;
}

#clipboard {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.clipboard-item {
    background-color: #f4f4f4;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes content apart */
    min-height: 150px;
}

.note-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 450px;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.note-form label {
    font-weight: bold;
    margin-bottom: 5px;
}

.note-form input, .note-form textarea {
    width: 100%;
    padding: 4px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.note-form textarea {
    height: 100px;
    resize: vertical;
}

.note-form button {
    background-color: #007bff;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.note-form button:hover {
    background-color: #0056b3;
}

.light-blue{
    background-color: #96ccff;
}

.light-green{
    background-color: #5cb85c;
}

.light-red{
    background-color: #ff6056;
}

.light-yellow{
    background-color: #fffb77;
}

.light-purple{
    background-color: #f0a2ff;
}

.grey{
    background-color: #ccc;
}

.note-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.note-header h1 {
    margin: 0;
    font-size: 1.2rem;
    flex-grow: 1;
}

.note-date{
    text-align: center;
    margin-top: auto;
}

.delete-btn {
    background-color: white;
    color: black;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
}

.delete-btn:hover {
    background-color: lightgrey;
}

.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.color-options input[type="radio"] {
    display: none;
}

.color-options label {
    cursor: pointer;
    padding: 5px 10px;
    margin: 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.color-options label:hover {
    filter: brightness(85%);
}

.hidden{
    display: none;
}
