/* Onelyyy Kurumsal Duyuru Kutusu */
.onelyyy {
    background: #ffffff; /* Beyaz arka plan */
    border-radius: 14px;
    padding: 25px 35px;
    max-width: 750px;
    margin: 40px auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    font-family: "Segoe UI", Tahoma, sans-serif;
    border-top: 5px solid #1b4f91; /* Kurumsal mavi çizgi */
    transition: all 0.3s ease-in-out;
}

.onelyyy:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.onelyyy h2 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1b4f91; /* Kurumsal mavi */
}

.onelyyy p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

.onelyyy .status {
    display: inline-block;
    background: #ffcc00;
    color: #222;
    font-weight: bold;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 12px;
}

/* Progress Bar */
.onelyyy-progress {
    width: 100%;
    background-color: #e6e9ee;
    border-radius: 50px;
    overflow: hidden;
    height: 16px;
    margin-top: 15px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.08);
}

.onelyyy-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1b4f91, #3d6ddf);
    width: 0;
    transition: width 2.5s ease-in-out;
}

/* Buton */
.onelyyy-button-container {
    text-align: center;
    margin-top: 30px;
}

.onelyyy-button {
    background-color: #1b4f91;
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.onelyyy-button:hover {
    background-color: #144078;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}