.calendar-options-container {
    background-color: #000000;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    width: auto;
    max-width: 600px;
    margin: auto;
    position: fixed;
    z-index: 1000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .calendar-options-container {
        width: 90%; /* Wider popup on mobile */
        max-width: none; /* Remove max-width constraint on mobile */
        top: 10%; /* Position towards the top on mobile */
        left: 50%; /* Center horizontally */
        transform: translate(-50%, 0); /* Adjust transformation for top alignment */
    }
}

.close-btn {
    color: #fff;
	position: absolute;
	top: 5px;
	padding-left: 20px;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: #ddd;
}

.share-header {
    border-bottom: 1px solid white;
    color: white;
	font-family: sans-serif;
	padding-left: 20px;
	padding-bottom: 0px !important;
}

.share-header p {
	margin-top: -20px;
	color: white;
	font-size: 9pt;
}

.share-header div{
    padding-bottom: 0px;
}

.share-header h2{
	color: white;
	font-size: 12pt;
	padding-top: 10px;
}

.share-options-events {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.calendar-btn {
    width: 90%; 
    max-width: 300px; 
    margin: 10px;
    padding: 10px;
    border-radius: 5px;
    color: black;
    text-decoration: none;
    font-size: 12px;
    background-color: black;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);

}

.calendar-btn img {
    margin-right: 10px;
    width: 10px;
    height: 10px;
}



.calendar-btn:hover,
.calendar-btn:focus {
    transform: scale(1.1);
    animation: neonGlow 1.5s infinite alternate;
}

@keyframes neonGlow {
    from {
        box-shadow: 0 0 10px #333, 0 0 20px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.4);
    }
    to {
        box-shadow: 0 0 20px #666, 0 0 30px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 255, 255, 0.6);
    }
}

.calendar-btn.apple { background: white; }
.calendar-btn.google { background: white; }
.calendar-btn.outlook { background: white; }
.calendar-btn.office { background: white; }
.calendar-btn.yahoo { background: white;; }

.row {

    justify-content: center;
    width: 80%; /* Ensuring full width */
}

.full-width {
    width: 80%; /* Adjusting to full width */
    max-width: 80%; /* Restricting to 80% of the viewport width */
}
