.cmg-cookie-policy-table-wrapper {
    margin: 20px 0;
}

.cmg-cookie-category-section {
    margin-bottom: 40px;
}

.cmg-cookie-category-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
    color: #333;
}

.cmg-cookie-policy-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.cmg-cookie-policy-table thead {
    background-color: #f5f5f5;
}

.cmg-cookie-policy-table th {
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    color: #555;
    border-bottom: 2px solid #e0e0e0;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cmg-cookie-policy-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
    font-size: 0.95em;
}

.cmg-cookie-policy-table tbody tr:hover {
    background-color: #fafafa;
}

.cmg-cookie-policy-table tbody tr:last-child td {
    border-bottom: none;
}

.cmg-cookie-name {
    font-weight: 600;
    color: #333;
}

.cmg-cookie-provider {
    color: #666;
}

.cmg-cookie-purpose {
    color: #777;
    line-height: 1.5;
}

.cmg-cookie-expiration {
    color: #888;
    white-space: nowrap;
}

.cmg-no-cookies {
    padding: 20px;
    background: #f9f9f9;
    border-left: 3px solid #2196F3;
    margin: 20px 0;
    color: #666;
}

.cmg-preferences-link {
    color: #2196F3;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 500;
    transition: color 0.2s ease;
}

.cmg-preferences-link:hover {
    color: #1976D2;
    text-decoration: none;
}

.cmg-preferences-button {
    background-color: #2196F3;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.cmg-preferences-button:hover {
    background-color: #1976D2;
}

@media screen and (max-width: 768px) {
    .cmg-cookie-policy-table {
        font-size: 0.9em;
    }
    
    .cmg-cookie-policy-table th,
    .cmg-cookie-policy-table td {
        padding: 8px 10px;
    }
    
    .cmg-cookie-category-title {
        font-size: 1.3em;
    }
    
    .cmg-cookie-policy-table th {
        display: none;
    }
    
    .cmg-cookie-policy-table tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid #e0e0e0;
        border-radius: 4px;
        background: #fff;
    }
    
    .cmg-cookie-policy-table td {
        display: block;
        text-align: left;
        padding: 10px;
        border-bottom: 1px solid #f0f0f0;
        position: relative;
        padding-left: 45%;
    }
    
    .cmg-cookie-policy-table td:before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        font-weight: 600;
        color: #333;
        text-transform: uppercase;
        font-size: 0.85em;
    }
    
    .cmg-cookie-policy-table td:last-child {
        border-bottom: none;
    }
    
    .cmg-cookie-name:before {
        content: "Název: ";
    }
    
    .cmg-cookie-provider:before {
        content: "Poskytovatel: ";
    }
    
    .cmg-cookie-purpose:before {
        content: "Účel: ";
    }
    
    .cmg-cookie-expiration:before {
        content: "Expirace: ";
    }
}
