/*
Theme Name: Twenty Twenty-Five Child
Template: twentytwentyfive
Version: 1.0
*/

/* Brand Dashboard Table */
.brand-dashboard-table {
    width: 100%;
    border-collapse: collapse;
}

.brand-dashboard-table th {
    background-color: #f9f9f9;
    font-weight: bold;
    padding: 8px;
    border-bottom: 1px solid #ccc;
}

.brand-dashboard-table td {
    padding: 8px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

/* Compliance Status Table */
.compliance-status-table th,
.compliance-status-table td {
    text-align: left;
    vertical-align: top;
}

.compliance-status-table tr:nth-child(even) {
    background-color: #fafafa;
}

/* Supplier Artwork Table */
.supplier-artwork-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-family: Arial, sans-serif;
}

.supplier-artwork-table th,
.supplier-artwork-table td {
    border: 1px solid #e0e0e0;
    padding: 12px;
    text-align: center;
    vertical-align: middle;
}

.supplier-artwork-table th {
    background-color: #f8f8f8;
    font-weight: bold;
}

.supplier-artwork-table tr:nth-child(even) {
    background-color: #fafafa;
}

/* Thumbnail Styling */
.supplier-artwork-table td img {
    width: 80px !important;
    height: auto !important;
    display: block;
    margin: 8px auto;
    border-radius: 4px;
    border: 1px solid #ccc;
    object-fit: contain;
}

/* Action Cell Layout */
.supplier-artwork-table .action-cell a {
    padding: 6px 12px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
}
.supplier-artwork-table .action-cell a:hover {
    background: #005f8d;
}

/* Buttons */
.supplier-artwork-table form input[type="submit"] {
    padding: 6px 12px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}
.supplier-artwork-table form input[type="submit"]:hover {
    background: #005f8d;
}

/* Responsive Table */
@media (max-width: 768px) {
    .supplier-artwork-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}