body {
    font-family: 'Arial', sans-serif;
    padding: 20px;
    padding-left: 5px;
    padding-right: 5px;
    line-height: 1.4;
    color: #fff;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 145s ease infinite;
    min-height: 100vh;
    margin: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}
.copy-udair-button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.2); /* Subtle tap feedback */
}
.copy-udair-button:active {
    background-color: #e0e0e0; /* Visual feedback on tap */
}
.content {
    max-width: 800px;
    margin: auto;
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.1);
}

.menu-container {
    max-width: 800px;
    margin: auto;
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    padding: 5px;
}

.menu-item {
    padding: 10px;
    border: 1px solid #fff;
    border-radius: 5px;
    margin: 2px;
    font-size: 10px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    background-color: transparent;
}

.menu-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.dl-menu {
    position: relative;
    display: inline-block;
    width: 25px;
}

.dl-dropdown {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    min-width: 120px;
    z-index: 1;
    border-radius: 5px;
    left: 0;
}

.dl-menu:hover .dl-dropdown {
    display: block;
}

.dl-dropdown .menu-item {
    display: flex;
    align-items: center;
    margin: 5px;
    border: none;
    padding: 5px;
}

.dl-dropdown .menu-item img {
    margin-right: 8px;
}

.dl-title {
    padding-top: 10px;
    padding-bottom: 5px;
    text-align: center;
    color: #fff;
}

h1 {
    font-size: 2.0em;
    margin-bottom: 0.5em;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2 {
    font-size: 1.5em;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    border-bottom: 2px solid #fff;
    padding-bottom: 0.2em;
}

h3 {
    font-size: 1.3em;
    margin-top: 1.2em;
    margin-bottom: 0.6em;
    font-weight: 600;
}

h4 {
    font-size: 1.1em;
    margin-top: 1em;
    margin-bottom: 0.4em;
    font-style: italic;
}

p {
    font-size: 1.1em;
    margin-bottom: 1em;
    text-align: justify;
}

ul {
    list-style-type: disc;
    padding: 10px;
    margin-left: 1em;
    margin-bottom: 1em;
}

li {
    margin-bottom: 0.1em;
    padding-left: 0.1em;
}

li p {
    display: inline;
    margin: 0;
}

hr {
    border: 1px solid rgb(255, 255, 255);
}

.icon {
    width: 15px;
    height: 15px;
    filter: brightness(0) invert(1);
    vertical-align: middle;
}

.dl-dropdown .icon {
    width: 15px;
    height: 15px;
}

.dl-item-label {
    font-size: 10px;
    text-transform: uppercase;
}

.note {
    border: 1px dashed #fff;
    max-width: 800px;
    margin: auto;
    border-radius: 10px;
    padding: 30px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    border: 1px solid #fff;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    font-size: 14px;
    text-align: center;
}

.notification.show {
    opacity: 1;
}

.bottom-menu-container {
    max-width: 800px;
    margin: auto;
    padding: 5px;
    text-align: center;
    margin-top: 20px;
}

.podcast-container {
    max-width: 800px;
    margin: 20px auto;
}

.podcast-card {
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.podcast-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.podcast-title {
    font-size: 1.3em;
    font-weight: bold;
    margin: 0;
}

.podcast-date {
    font-size: 0.9em;
    color: #ddd;
    margin: 0;
}

.podcast-description {
    font-size: 1em;
    margin: 0;
}

.podcast-link {
    display: inline-block;
    padding: 8px 15px;
    border: 1px solid #fff;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9em;
    text-align: center;
    width: fit-content;
}

.podcast-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.loading-message,
.error-message {
    text-align: center;
    font-size: 1.1em;
    margin: 20px 0;
}