.back-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #f5f5f5; /* Light grey background */
    border: 2px solid #cccccc; /* Medium grey border */
    border-radius: 50%; /* Circular button */
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    transition: all 0.3s ease-in-out;
}

.back-icon {
    width: 24px;
    height: 24px;
    color: #3a9bbe; /* Dark grey icon */
}

.back-btn:hover {
    background-color: #f0f0f0; /* Slightly darker grey on hover */
    border-color: #999999; /* Darker grey border on hover */
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.3); /* Subtle shadow */

}

.back-btn:hover .back-icon {
    stroke: #333333; /* Darker grey icon on hover */
}

.home-btn {
    
    background-color: #ffffff; /* Light Grey */
    color: #666; /* Medium Grey */
    border: none; /* Remove solid border */
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 19px;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease-in-out;
    box-shadow: 5px 5px 5px rgb(187, 187, 187); /* Blurred border effect */
}

.home-btn:hover {
    background-color: #fefefe;
    color: #333; /* Darker Grey */
    transform: translateY(-3px);
    box-shadow: 0 0 8px rgba(170, 170, 170, 0.9); /* Slightly stronger blur on hover */
}

/* SVG Home Icon */
.home-icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}


