body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.top-right-buttons {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 10px;
    z-index: 999;
}

.corner-button {
    text-decoration: none;
    padding: 10px 15px;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.3s ease;
}

.corner-button:hover {
    background-color: #0056b3;
}

.corner-button i {
    font-size: 16px;
}

/* Style for the back arrow button */
.return-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 3px;
    text-decoration: none; /* Remove underline for links */
    cursor: pointer;
    transition: background-color 0.3s ease; /* Smooth transition effect */
    position: fixed; /* Fixed position */
    top: 0; /* Position at the top */
    left: 0; /* Position at the left */
    z-index: 999; /* Ensure it's above other elements */
    margin-left: 10px;
    margin-top: 10px;
}

.return-button:hover {
    background-color: #0056b3; /* Darker shade of blue on hover */
}

.fa-arrow-left {
    margin-right: 5px; /* Add some space between the icon and the text */
}

