body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #f0f0f0;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: space-around;
}
.container {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0;
    flex: 1;
}
.main-content {
    display: flex; /* Flex container for main content and notes */
    max-width: 1200px; /* Adjust as needed */
    width: 100%;
    justify-content: space-between;
}
h1 {
    text-align: center;
}
.links, .todo {
    background-color: #2a2a2a;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}
ul {
    list-style-type: none;
    padding: 0;
}
li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
a {
    color: #4a9de0;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
input[type="text"] {
    width: 100%;
    padding: 5px;
    margin-bottom: 10px;
    background-color: #3a3a3a;
    border: 1px solid #4a4a4a;
    color: #f0f0f0;
}
input[type="checkbox"] {
    margin-right: 10px;
}
.completed {
    text-decoration: line-through;
    color: #888;
}

/* Card style for important links */
.links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.links li {
    background-color: #3a3a3a;
    padding: 10px;
    border-radius: 5px;
    flex: 1;
    flex-flow: column;
    box-sizing: border-box;
    text-align: center;
}
.links a {
    display: block;
    padding: 10px;
    background-color: #4a4a4a;
    border-radius: 5px;
    color: #f0f0f0;
    text-decoration: none;
}
.links a:hover {
    background-color: #5a5a5a;
}

/* Delete button style */
.delete-btn {
    background: none;
    border: none;
    color: red;
    cursor: pointer;
    margin-left: 10px; /* Adjust margin as needed */
}

.notes {
    width: 300px;
    background-color: #2a2a2a;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    margin-left: 20px; /* Add margin to separate from main content */
    flex-shrink: 0; /* Prevent notes from shrinking */
}

.notes h2 {
    margin-top: 0;
}

#notesInput {
    width: 100%;
    height: 400px;
    background-color: #3a3a3a;
    border: 1px solid #4a4a4a;
    color: #f0f0f0;
    padding: 10px;
    box-sizing: border-box;
    resize: none;
}


