.cookie-manager-public {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    max-width: 1200px;
    margin: 20px auto;
    line-height: 1.6;
}

.cookie-manager-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.cookie-detection-section,
.cookie-documentation-section {
    margin: 40px 0;
}

.cookie-detection-section h3,
.cookie-documentation-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.cookie-intro {
    color: #666;
    margin-bottom: 20px;
    font-size: 15px;
}

#detected-cookies-public {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    min-height: 100px;
}

.detected-cookie-live {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 12px 15px;
    margin: 8px 0;
    border-radius: 6px;
    border-left: 3px solid #0073aa;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.detected-cookie-live strong {
    font-weight: 600;
    color: #2c3e50;
}

.detected-cookie-live small {
    font-family: monospace;
    font-size: 12px;
    color: #6c757d;
    max-width: 400px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cookie-btn {
    background: #0073aa;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 15px;
}

.cookie-btn:hover {
    background: #005177;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.cookie-category-group {
    margin: 40px 0;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    background: #fff;
}

.category-necessary {
    border-left: 5px solid #28a745;
}

.category-functional {
    border-left: 5px solid #17a2b8;
}

.category-analytics {
    border-left: 5px solid #ffc107;
}

.category-marketing {
    border-left: 5px solid #dc3545;
}

.category-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-count {
    background: #0073aa;
    color: white;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.category-description {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 20px;
    font-style: italic;
}

.cookies-list {
    display: grid;
    gap: 15px;
}

.cookie-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.cookie-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.cookie-card-header {
    background: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e9ecef;
}

.cookie-name {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    font-family: monospace;
}

.cookie-provider {
    font-size: 13px;
    color: #6c757d;
    background: #e9ecef;
    padding: 4px 12px;
    border-radius: 20px;
}

.cookie-card-body {
    padding: 20px;
}

.cookie-info-row {
    margin: 12px 0;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 15px;
    align-items: start;
}

.cookie-label {
    font-weight: 600;
    color: #495057;
    font-size: 14px;
}

.cookie-value {
    color: #6c757d;
    font-size: 14px;
}

.cookie-value a {
    color: #0073aa;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.cookie-value a:hover {
    color: #005177;
    text-decoration: underline;
}

.cookie-empty {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-style: italic;
    font-size: 16px;
    background: #f8f9fa;
    border-radius: 8px;
}

.cookie-footer-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin: 40px 0;
    border-radius: 8px;
}

.cookie-footer-note p {
    margin: 0;
    color: #856404;
    font-size: 14px;
}

@media (max-width: 768px) {
    .cookie-manager-title {
        font-size: 24px;
    }
    
    .cookie-info-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    
    .cookie-label {
        font-weight: 700;
    }
    
    .detected-cookie-live {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}
