/* styles.css */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: #fff;
    padding: 15px;
    text-align: center;
    z-index: 1000;
    display: flex;
    flex-direction: column; /* 改为列布局 */
    align-items: center; /* 居中对齐 */
    gap: 10px; /* 添加间距 */
}

.cookie-consent p {
    margin: 0; /* 移除默认段落边距 */
    text-align: center; /* 文字居中对齐 */
}

.cookie-consent-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px; /* 添加圆角 */
}

.cookie-consent-button:hover {
    background-color: #45a049;
}

/* 针对小屏幕的优化 */
@media (max-width: 600px) {
    .cookie-consent {
        padding: 10px; /* 减少内边距 */
        font-size: 14px; /* 调整字体大小 */
    }

    .cookie-consent-button {
        padding: 8px 16px; /* 调整按钮大小 */
    }
}
