/**
 * Public Styles for WP Cookie Detector
 */

.wpcd-public-container {
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    padding: 30px;
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
}

.wpcd-public-header {
    margin-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.wpcd-public-header h3 {
    margin: 0 0 10px;
    font-size: 24px;
    color: #1a1a1a;
}

.wpcd-public-header p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* Category Section */
.wpcd-category-section {
    margin-bottom: 30px;
}

.wpcd-category-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 15px;
    padding: 12px 15px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
}

.wpcd-category-essential {
    background: #d5f4e6;
    color: #00662e;
}

.wpcd-category-analytics {
    background: #d5e4f4;
    color: #004a77;
}

.wpcd-category-marketing {
    background: #f4d5d8;
    color: #8c1823;
}

.wpcd-category-functional {
    background: #f0e5d5;
    color: #8c5a1e;
}

.wpcd-category-unclassified {
    background: #f0f0f1;
    color: #50575e;
}

.wpcd-cookie-count {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
}

/* Table */
.wpcd-public-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 14px;
}

.wpcd-public-table thead th {
    background: #f9f9f9;
    padding: 12px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #e1e1e1;
    color: #1a1a1a;
}

.wpcd-public-table tbody td {
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: top;
}

.wpcd-public-table tbody tr:last-child td {
    border-bottom: none;
}

.wpcd-public-table tbody tr:hover {
    background: #fafafa;
}

.wpcd-public-table strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Badge */
.wpcd-badge-small {
    display: inline-block;
    padding: 2px 8px;
    margin-left: 8px;
    background: #fef7e0;
    color: #94672c;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Footer */
.wpcd-public-footer {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #e1e1e1;
    text-align: center;
}

.wpcd-last-updated {
    color: #999;
    font-size: 13px;
    font-style: italic;
    margin: 0;
}

/* No Cookies */
.wpcd-no-cookies {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-size: 16px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .wpcd-public-container {
        padding: 20px;
    }

    .wpcd-public-table {
        font-size: 13px;
    }

    .wpcd-public-table thead th,
    .wpcd-public-table tbody td {
        padding: 8px;
    }

    .wpcd-category-title {
        font-size: 16px;
        padding: 10px 12px;
    }
}

@media screen and (max-width: 600px) {
    .wpcd-public-table {
        display: block;
        overflow-x: auto;
    }

    .wpcd-public-table thead {
        display: none;
    }

    .wpcd-public-table tbody tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid #e1e1e1;
        border-radius: 6px;
        padding: 10px;
    }

    .wpcd-public-table tbody td {
        display: block;
        padding: 8px 0;
        border: none;
        text-align: left;
    }

    .wpcd-public-table tbody td:before {
        content: attr(data-label);
        font-weight: 600;
        display: inline-block;
        width: 100px;
        color: #666;
    }
}
