body {
    margin: 0;
    padding: 30px;
    font-family: 'Poppins', sans-serif;
    min-width: 400px;
    background-color: #fff;
    color: #333;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    min-width: 400px;
    text-align: center;
    display: flex; /* Ensure it can resize based on content */
    flex-direction: column; /* Allow items to stack vertically */
    justify-content: flex-start; /* Align items at the start */
    height: auto; /* Allow height to be dynamic */
    
}


h1 {
    color: #e67e22;
    font-size: 24px;
    margin-bottom: 20px;
}

.input-container {
    display: flex;
    margin-bottom: 20px;
}

input {
    flex-grow: 1;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #e67e22;
    border-radius: 10px 0 0 10px;
    box-sizing: border-box;
    outline: none;
}

button {
    background-color: #e67e22;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 0 10px 10px 0;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background-color: #d35400;
}

#tab-btn {
    border: 2px solid #e67e22;
    border-radius: 10px;
    margin-top: 10px;
}

#delete-btn {
    background-color: white;
    color: #e67e22;
    border: 2px solid #e67e22;
    border-radius: 10px;
    margin-top: 10px;
}

#delete-btn:hover {
    background-color: #e67e22;
    color: white;
}

ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: 20px;
}

li {
    background-color: #fafafa;
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

a {
    color: #e67e22;
    text-decoration: none;
    font-weight: bold;
}

