
/* UEESHOP-adapted table style for ADC product list */
.adc-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
    color: #333;
}
.adc-table th {
    background-color: #f5f5f5;
    padding: 12px 8px;
    text-align: left;
    border: 1px solid #ddd;
    font-weight: 600;
}
.adc-table td {
    padding: 10px 8px;
    border: 1px solid #ddd;
    vertical-align: middle;
}
.adc-table tr:nth-child(even) {
    background-color: #f9f9f9;
}
.adc-table tr:hover {
    background-color: #f1f1f1;
}
/* Mobile adaptation */
@media (max-width: 768px) {
    .adc-table {
        font-size: 12px;
    }
    .adc-table th, .adc-table td {
        padding: 8px 4px;
    }
    .contact-info {
        font-size: 12px !important;
    }
    .adc-title {
        font-size: 18px !important;
    }
}
/* Title style */
.adc-title {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin: 15px 0 25px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #eee;
}
.contact-info {
    margin-top: 20px;
    padding: 15px;
    background-color: #f5f5f5;
    border-radius: 4px;
    font-size: 14px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.contact-info strong {
    white-space: nowrap;
}
.contact-info a {
    color: #0066cc;
    text-decoration: none;
}
.contact-info a:hover {
    text-decoration: underline;
}
.whatsapp-link {
    display: inline-block;
    padding: 8px 12px;
    background-color: #25d366;
    color: white !important;
    border-radius: 4px;
    white-space: nowrap;
}
.whatsapp-link:hover {
    background-color: #1ebe57;
    text-decoration: none !important;
}
