/**
 * Cookie Manager - Estilos CSS para October CMS
 */

/* Banner de consentimento de cookies */
.cookie-manager-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f1f1f1;
    color: #333;
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-manager-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.cookie-manager-content p {
    margin: 0 15px 10px 0;
    flex: 1;
}

.cookie-privacy-link {
    margin-right: 15px;
}

.cookie-privacy-link a {
    color: #007bff;
    text-decoration: underline;
}

.cookie-accept-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

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

/* Página de configurações de cookies */
.cookie-manager-settings {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.cookie-manager-settings h3 {
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    color: #333;
}

.cookie-type {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.cookie-type:last-of-type {
    border-bottom: none;
}

.cookie-type label {
    display: flex;
    align-items: center;
    font-weight: bold;
    margin-bottom: 5px;
}

.cookie-type input[type="checkbox"] {
    margin-right: 10px;
}

.cookie-description {
    margin-left: 25px;
    font-size: 13px