@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Outfit", sans-serif;
}

body {
    background: #f9f2f2;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background-color: #8b6f47;
    color: white;
    text-align: center;
    padding: 20px 0;
    box-shadow: 0 2px 6px #8b6f47;
}

header h1 {
    font-size: 2rem;
    letter-spacing: 1px;
}

/* ===== REMOVE BOOKS PAGE ===== */
#content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    min-height: calc(100vh - 160px);
}

#content form {
    background: #fff;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    width: 100%;
    text-align: center;
}

#content label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2c3e50;
}

#content input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 16px;
    transition: border 0.3s, box-shadow 0.3s;
}

#content input:focus {
    border-color: #e74c3c;
    outline: none;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15);
}

/* Remove button */
#remove_bookBtn {
    width: 100%;
    padding: 12px;
    background: #8b6f47;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

#remove_bookBtn:hover {
    background: #6e5434;
}

#backBtn {
    margin: 20px auto 20px auto;
    padding: 10px 20px;
    background-color: #8b6f47;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

#backBtn:hover {
    background-color: #6e5434;
}

footer {
    background-color: #8b6f47;
    color: #ddd;
    text-align: center;
    padding: 15px 10px;
    margin-top: auto;
}

footer p {
    margin: 5px 0;
}

footer a {
    color: #f9f2f2;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}