.resultado-frete table:not(.shipping-rates-table) {
    display: none !important;
}

.shipping-rates-table {
    width: 100%;
    border-collapse: collapse;
    font-family: inherit;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 15px 0;
}

.shipping-rates-table thead th {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #495057;
    font-weight: 600;
    padding: 12px 8px;
    text-align: center;
    border-bottom: 2px solid #dee2e6;
    font-size: 13px;
}

.shipping-rates-table thead th:first-child { width: 60px; }
.shipping-rates-table thead th:nth-child(2) { text-align: left; }
.shipping-rates-table thead th:nth-child(3) { width: 100px; }
.shipping-rates-table thead th:nth-child(4) { width: 140px; }

.shipping-rate-row {
    transition: background 0.2s ease;
}

.shipping-rate-row:hover {
    background: #f8f9fa;
}

.shipping-rate-row:nth-child(even) {
    background-color: rgba(0,0,0,0.02);
}

.shipping-rates-table tbody td {
    padding: 12px 8px;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
}

.shipping-rates-table tbody td:first-child { text-align: center; }
.shipping-rates-table tbody td:nth-child(2) { font-weight: 500; color: #333; }
.shipping-rates-table tbody td:nth-child(3) {
    text-align: center;
    font-weight: 500;
    color: #28a745;
    font-size: 15px;
}
.shipping-rates-table tbody td:nth-child(4) {
    text-align: center;
    color: #6c757d;
    font-size: 12px;
}

.shipping-icon {
    max-width: 40px !important;
    max-height: 30px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.shipping-rate-row:hover .shipping-icon {
    transform: scale(1.05);
}

/* Mensagens de CEP */
.cep-message {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    animation: slideIn 0.3s ease;
}

.cep-info {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 1px solid #2196f3;
    color: #1565c0;
}

.cep-error {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border: 1px solid #f44336;
    color: #c62828;
}

.cep-icon {
    font-size: 16px;
    flex-shrink: 0;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
