body {
    background-color: #121212;
    color: #ffffff;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    text-align: center; 
}

h1, h2, h3 {
    color: #ffffff;
}

.title {
    color: #ffffff;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
    justify-content: center;
    gap: 1.875rem;
}

.gallery .card {
    transition: 0.1s linear;
}

.gallery .card:hover {
    transform: scale(1.1);
    z-index: 10;
}

p {
    font-size: 0.75rem;
}

.checkout-header {
    background-color: #452c63;  
    color: white;
    padding: 0.625rem 1.25rem;
    margin-bottom: 1.25rem;
    border-radius: 0.3125rem;
    text-align: center;
}

.checkout-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.checkout-ticket {
    background-color: #f7f7f7; 
    border: 0.0625rem solid #e0e0e0;
    border-radius: 0.3125rem;
    padding: 0.9375rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout-room-number {
    font-size: 1.2rem;
    font-weight: bold;
}

.checkout-details p {
    margin: 0.3125rem 0;
}

.message {
    text-align: center;
    padding: 0.9375rem;
    background-color: #ffeb3b;  
    border-radius: 0.3125rem;
}

.home-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(120deg, #f7f8fc, #e6e7ec);
    border-radius: 0.625rem;
    max-width: 25rem;
    margin: 0 auto;
    padding: 1.25rem;
    box-shadow: 0 0.5rem 0.9375rem rgba(0, 0, 0, 0.1);
}

.home-title {
    color: #452c63;
    font-size: 2.2rem;
    margin-bottom: 0.9375rem;
    padding: 0.3125rem 1.25rem;
    border-radius: 0.3125rem;
}

p {
    color: #6c6c6c;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 0; 
}

.view-checkouts-btn {
    display: inline-block;
    padding: 0.75rem 1.5625rem;
    background-color: #452c63;
    color: white;
    border: none;
    border-radius: 1.5625rem;
    text-decoration: none;
    font-size: 1.2rem;
    letter-spacing: 0.0625rem;
    transition: all 0.3s;
    margin: 0;
}

.view-checkouts-btn:hover {
    color: white;
    transform: translateY(0.3125rem);
    box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.1);
}

.checkout-header-container {
    background-color: #452c63;
    padding: 0.625rem 1.25rem;
    border-radius: 0.3125rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout-header {
    color: white;
    margin: 0; 
    flex-grow: 1; 
}

.logout-btn {
    color: white;
    border: 0.0625rem solid white; 
    border-radius: 0.3125rem;
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-left: 1.25rem; 
}

.logout-btn:hover {
    background-color: white;
    color: #452c63;
}

.button-container {
    display: flex;
    justify-content: center; 
    gap: 1.25rem; 
    margin-top: 1.25rem; 
}
