body {
    font-family: Arial, sans-serif;
}

.flyout-container {
    position: relative;
    display: inline-block;
}

.flyout-btn {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.flyout-panel {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    background-color: #333;
    color: white;
    width: 200px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.flyout-panel ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.flyout-panel ul li {
    padding: 10px;
    border-bottom: 1px solid #444;
}

.flyout-panel ul li a {
    color: white;
    text-decoration: none;
    display: block;
}

.flyout-panel ul li a:hover {
    background-color: #575757;
}

.flyout-container:hover .flyout-panel {
    display: block;
}

.floating-link {
    position: fixed; /* Keeps it fixed on the screen */
    top: 50%; /* Distance from the bottom */
    right: 20px; /* Distance from the right */
    background-color: black; /* Button color */
    color: white; /* Text color */
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none; /* Removes underline */
    font-size: 16px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
    text-align: center;
}

.floating-link a span {
	display:block;
	font-weight:bolder;
	font-size:18px;
	line-height:1.2em;
	letter-spacing:0;
    margin-bottom: 20px;
    text-transform:uppercase;
    color: red;
}
.floating-link2 {
    position: fixed; /* Keeps it fixed on the screen */
    top: 55%; /* Distance from the bottom */
    right: 20px; /* Distance from the right */
    background-color: #4CAF50; /* Button color */
    color: white; /* Text color */
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none; /* Removes underline */
    font-size: 16px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}
/* Hover effect */
/* .floating-link:hover {
    background-color: #45a049; /* Darker green on hover */
} */