﻿body {
}

#orderListContainer {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow-x: hidden;
}

.table-header {
    align-items: center;
    margin-bottom: 20px;
    text-align: center;
}

.table-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.notice-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer; /* Klik izlenimi */
}

    .notice-card:hover {
        transform: scale(1.02);
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }

    .notice-card:active {
        transform: scale(0.98);
    }

.notice-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

    .notice-title a {
        color: #337ab7;
        text-decoration: none;
    }

        .notice-title a:hover {
            text-decoration: underline;
        }

.notice-date {
    font-size: 12px;
    color: #777;
    margin-top: 5px;
}

.detail-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 18px;
    margin-bottom: 15px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.07);
}

.detail-date {
    font-size: 18px;
    font-weight: bold;
    color: #222;
    margin-bottom: 6px;
}

.detail-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.detail-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.detail-link {
    font-size: 14px;
    margin-top: 10px;
    display: inline-block;
}

    .detail-link:hover {
        text-decoration: underline;
    }

@keyframes blinkHighlight {
    0% {
        background-color: #fff;
    }

    25% {
        background-color: #fffbcc;
    }

    50% {
        background-color: #fff;
    }

    75% {
        background-color: #fffbcc;
    }

    100% {
        background-color: #fff;
    }
}

.blink {
    animation: blinkHighlight 1s ease-in-out 3; /* 3 kez yanıp sönsün */
}
