.custom-wrapper {
    padding: 20px 0px;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
}

#sample h2.entry-title, #sample p.page-description {
    color: #fff;
}

#sample p.page-description {
    font-size: x-large;
    padding-top: 15px;
}

.demo-input-box {
    background-color: #1e1e1e;
    border-radius: 10px;
    padding: 10px;
}

/* Base button styling */
.hover-button {
    cursor: pointer; /* This ensures the cursor is a pointer even without hover */
    transition: background-color 0.3s ease; /* Smooth transition for background color */
}

/* Hover effect */
.hover-button:hover {
    background-color: #0056b3; /* Darker shade for hover effect */
    cursor: pointer; /* Ensures cursor is a pointer on hover */
}

/* Floating alert styling */
.floating-alert {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: none; /* Hidden by default */
    z-index: 1000; /* Ensure it's on top of other elements */
    font-size: 16px;
    animation: fade-in-out 3s forwards; /* Animation to fade in and out */
}

/* Keyframes for the fade-in and fade-out effect */
@keyframes fade-in-out {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}