* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fdf6ec;
    color: #333;
    padding: 20px;
}

#container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    color: #2e8b57;
    margin-bottom: 20px;
}

#searchbox {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

#searchinput {
    padding: 10px;
    font-size: 1rem;
    width: 60%;
    border: 2px solid #2e8b57;
    border-radius: 8px;
    outline: none;
    transition: 0.3s;
}

#searchinput:focus {
    border-color: #246b45;
    box-shadow: 0 0 5px rgba(46, 139, 87, 0.4)
}

#searchbtn {
    padding: 12px;
    margin-top: 0;
}

button {
    padding: 10px 20px;
    margin-top: 10px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background-color: #2e8b57;
    color: white;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #246b45;
}

#quoteDisplay {
    background-color: #fff;
    padding: 20px;
    border: 2px solid #2e8b57;
    border-radius: 12px;
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

#quoteText {
    font-size: 1.5rem;
    font-style: italic;
    color: #444;
    margin-bottom: 15px;
    line-height: 1.6;
}

#quoteAuthor {
    font-size: 1rem;
    color: #888;
    text-align: right;
    font-weight: 500;
}

#quoteDisplay::before {
    content: "💬";
    font-size: 1.8rem;
    display: block;
    text-align: left;
    margin-bottom: 10px;
    color: #2e8b57;
}

#addfavbtn {
    background-color: #ff69b4;
    margin-top: 15px;
}

#addfavbtn:hover {
    background-color: #e55c9c;
}

#favourites {
    margin-top: 40px;
    text-align: left;
}

#favourites h2 {
    color: #e55c9c;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

#favlist {
    list-style: none;
    padding-left: 0;
}

#favlist li {
    background-color: #fff0f5;
    padding: 10px;
    border: 1px solid #ffb6c1;
    border-radius: 8px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.deletebtn {
    background-color: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: red;
}

.deletebtn:hover {
    background-color: transparent;
}