html, body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #111;
    color: #fff;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

header {
    background-color: #222;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

h1, h2, h3 {
    margin-bottom: 10px;
    color: #fff;
}

.page {
    background-color: #333;
    margin: 10px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 800px;
    width: 100%;
}

.page:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.previous-orders-container {
    margin-bottom: 20px;
}

#previous-orders {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.order-item {
    background-color: #444;
    border-radius: 5px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s;
}

.order-item:hover {
    background-color: #555;
}

.order-item img {
    width: 50px;
    height: 75px;
    object-fit: cover;
    border-radius: 5px;
}

.order-item-details {
    flex: 1;
}

.order-item-details p {
    margin-bottom: 5px;
    color: #ccc;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 10px;
    color: #ccc;
    display: flex;
    align-items: center;
}

h3 {
    margin-top: 15px;
    font-size: 18px;
    color: #fff;
}

a.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #b30000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin-top: 10px;
}

a.button:hover {
    background-color: #800000;
}

#movie-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.movie-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
    padding: 10px;
    background-color: #444;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
}

.movie-item img {
    width: 100px;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

.movie-item:hover {
    background-color: #555;
    transform: scale(1.05);
}

.movie-item.selected {
    border: 2px solid #b30000;
}
