/* style.css */
body {
  background-image: url("background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    font-family: Arial, sans-serif;
}
/* --- Text styles --- */
p, li {
    color: white;
    text-shadow: 1px 1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, -1px -1px 0 #000;
}
h1, h2, h3, h4, h5, h6 {
    color: white;
    font-style: italic;
    text-shadow: 1px 1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, -1px -1px 0 #000;
}
a {
    color: white;
    text-decoration: underline;
    text-shadow: 1px 1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, -1px -1px 0 #000;
}
.container {
    width: 400px;
    padding: 20px;
    background-color: rgb(74, 35, 31);
    border: 1px solid #000;
    border-radius: 8px;
}
.form-input {
    margin-bottom: 11px;
}
.form-input label {
    display: block;
    margin-bottom: 5px;
    color: white;
    text-shadow: 1px 1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, -1px -1px 0 #000;
}
.form-input input {
    width: 80%;
    padding: 10px;
    border: 1px solid #000;
    border-radius: 5px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
}
.btn button {
    cursor: pointer;
    background-color: #007BFF;
    transition: background-color 0.4s ease;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 3px;
    font-size: 12px;
}
.btn button:hover {
    background-color: #394b5e;
}
.guest-card {
    border: 1px solid #000;
    padding: 5px;
    margin: 5px 0;
    background-color: rgb(74, 35, 31);
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.guest-card h2 {
    margin: 0;
}
.guest-card p {
    margin: 5px 0;
    color: white;
    text-shadow: 1px 1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, -1px -1px 0 #000;
}
.delete-btn {
    cursor: pointer;
    background-color: #c0392b;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    margin-top: 5px;
    transition: background-color 0.4s ease;
}
.delete-btn:hover {
    background-color: #922b21;
}
.entry-text {
    display: block;
    max-height: 6em;
    overflow: hidden;
    color: white;
    text-shadow: 1px 1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, -1px -1px 0 #000;
    transition: max-height 0.3s ease;
}
.entry-text.expanded {
    max-height: 9999px;
}
.read-more-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #aac4ff;
    font-size: 12px;
    padding: 0;
    margin-top: 2px;
    text-decoration: underline;
}