/* Reset */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
}

/* Header */
header {
    position: absolute;
    top: 20px;
    right: 20px;
}

/* Top-Right Buttons */
.top-right-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

/* Navigation Button Styling */
.nav-button {
    background-color: #8a2be2; /* Purple background */
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    border: 2px solid transparent; /* Initial border is transparent */
    transition: background-color 0.3s ease, border-color 0.3s ease; /* Smooth transition */
    font-size: 16px;
    font-weight: bold;
}

.nav-button:hover {
    background-color: white; /* Change to white when hovered */
    color: #8a2be2; /* Change text color to purple */
    border-color: #8a2be2; /* Purple border */
}

/* Main Content */
main {
    height: 100%;
    width: 100%;
}

.svg-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.svg-container img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
}

/* WhatsApp Floating Button Styling */
.whatsapp-float-button {
    position: fixed;
    bottom: 20px; /* Position from the bottom */
    right: 20px;  /* Position from the right */
    background-color: #25D366; /* WhatsApp Green */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.whatsapp-float-button:hover {
    background-color: #1ebc57;
    transform: scale(1.1); /* Slightly increase size on hover */
}
