/* Sağ Duyurular Konteyneri */
.rightaside > .right-announcements {
    width: 20rem;
    /* background-color: rgb(25, 225, 200);  */
    background: none;
    color: rgb(16, 16, 16); /* Yazı Rengi */
    /* position: relative; */
    top: 0;
    right: 1rem;
    height: min-content;
    min-height: 50%;
    /* padding: 1.25rem; */
    overflow-y: auto;
    /* box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1); */
}

.right-announcements > #announcements-list {
    padding: 0px;
}
/* Duyurular Başlığı */
.right-announcements h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: rgb(16, 16, 16);
}

/* Her Duyuru Bölümü */
.announcement {
    border: rgb(196, 196, 196) solid 0.1rem;
    border-left: rgb(25, 225, 200) solid 0.5rem;
    overflow-x: hidden;
    overflow-y: hidden;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background-color: rgb(255, 255, 255); /* Duyuru Arka Planı */
    /* border-radius: 0.8rem; */
}
.announcement:hover {
    background-color: rgba(250, 250, 250, 0.95); /* Duyuru Arka Planı */
}
.announcement a {
    text-decoration: none;
    color: inherit;
}
/* Duyuru Başlıkları */
.announcement a h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

/* Duyuru tarih */
.announcement a span {
    font-size: 1.25rem;
    line-height: 1.4;
}
.announcements-button {
    background-color: rgb(25, 225, 200);
    /* width: 50%; */
    font-size: 1.5rem;
    display: block;
    text-align: center;
    color: rgb(16, 16, 16);
}
.announcements-button:hover {
    color: white;
}

.announcement-skeleton {
    display: flex;
    flex-direction: column;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
    background-color: #f2f2f2;
    transition: opacity 0.3s ease;
}

.skeleton-title {
    height: 20px;
    width: 70%;
    background-color: #ddd;
    margin-bottom: 10px;
    border-radius: 5px;
}

.skeleton-date {
    height: 15px;
    width: 50px;
    background-color: #ddd;
    border-radius: 5px;
}
