* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.form-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: #f5f5f5;
    padding: 2rem;
    position: relative;
    z-index: 1;
    overflow: auto;
}

form {
    display: flex;
    flex-direction: column;
    width: 80%;
    max-width: 400px;
}

label {
    margin-top: 1rem;
    font-weight: bold;
}

input,
textarea {
    margin-top: 0.25rem;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    margin-top: 1.5rem;
    padding: 0.75rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.image-side {
    flex: 1;
    background-image: url("IMG_8751.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.gradient-overlay {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100%;
    background: linear-gradient(to right, #f5f5f5 0%, rgba(245, 245, 245, 0.8) 30%, rgba(245, 245, 245, 0.0) 100%);
    z-index: 2;
    pointer-events: none;
}

footer {
    display: block
}

.slot.occupied {
    background-color: #ddd;
    color: #888;
    cursor: not-allowed;
    pointer-events: none;
}

.slot.disabled {
    background: #eee;
    color: #bbb;
    cursor: not-allowed;
    pointer-events: none;
    /* Prevent click events */
}