body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.content {
    padding: 20px;
}

.sticky-ad {
    position: absolute; /* Changed to absolute */
    width: absolute; /* Width of the ad */
    background-color: white;
    color: #000000;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 1000; /* Ensure it stays above other content */
}
