body {
    font-family: Arial, sans-serif;
}

img {
    max-width: 100%;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

/* Make the image container relatively positioned */
.image-container {
    position: relative;
    display: inline-block;
}

/* Style the main image */
.main-image {
    width: 100%;
    height: auto;
}

/* Position the Sessions link in the top-left corner */
.sessions-link {
    position: absolute;
    top: 16px;
    left: 16px;
    color: fuchsia;
    text-decoration: none;
    font-size: 32px;
    transform: rotate(-20deg); /* Rotates the text 20 degrees up */
    font-family: 'Patrick Hand', sans-serif; /* Optional: Use a hand-printing font */
    background: none; /* Ensure no background by default */
    padding: 10px; /* Optional padding for better click area */
}

/* Change hover background to light fuchsia */
.sessions-link:hover {
    text-decoration-color: fuchsia; /* fuchsia color for underline */
    text-decoration: underline;
}

.no-sessions {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh; /* Adjust height as necessary to center the text */
    text-align: center;
}

.no-sessions p {
    font-size: 2rem;
    font-weight: bold;
}

/* Position the Install button in the top-right corner */
.install-button {
    position: absolute;
    bottom: 24px; /* Adjust as needed */
    right: 24px; /* Positioning it on the right */
    color: fuchsia;
    text-decoration: none;
    font-size: 32px;
    font-family: 'Patrick Hand', sans-serif; /* Optional: Use a hand-printing font */
    background: none; /* Ensure no background by default */
    padding: 10px; /* Optional padding for better click area */
}

/* Change hover background to light fuchsia */
.install-button:hover {
    text-decoration-color: fuchsia; /* fuchsia color for underline */
    text-decoration: underline;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.form-box {
    width: 100%; /* Ensure the form-box aligns with the title */
    max-width: 300px; /* Control max width */
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #ccc;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px; /* Add some space between title and form */
}

.form-box form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-box button[type="submit"] {
    align-self: flex-end;
    padding: 8px 12px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.form-box button[type="submit"]:hover {
    background-color: #45a049;
}

/* Styles for back arrow */
.back-arrow {
    display: inline-block;
    padding: 10px 15px;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: lightfuchsia;
    text-decoration: none;
    border-radius: 5px;
    background-color: transparent;
    transition: color 0.3s ease;
}

.back-arrow:hover {
    color: lightfuchsia;
    text-decoration: underline;
}

