.cookie-container {
    position: fixed;
    bottom: -100px; /* 預設藏起來 */
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    transition: all 0.5s ease;
    z-index: 9999;
}

.cookie-container.show {
    bottom: 0; /* 彈出來 */
}

.cookie-container p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-container a {
    color: #3498db;
    text-decoration: underline;
}

.cookie-btn {
    background: #27ae60;
    border: none;
    color: white;
    padding: 8px 20px;
    margin-left: 20px;
    cursor: pointer;
    border-radius: 4px;
    white-space: nowrap;
}

.cookie-btn:hover {
    background: #2ecc71;
}
