.custom-delivery-container {
    max-width: 75rem;
    margin: 0 auto;
    padding: 1rem;
}
@media (min-width: 448px) {
    .custom-delivery-container {
        padding: 2rem;
    }
}
.custom-delivery-box {
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 1.5rem;
}
@media (min-width: 448px) {
    .custom-delivery-box {
        padding: 2rem;
    }
}
.custom-delivery-header {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}
.custom-delivery-title {
    font-size: 2rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}
.custom-delivery-info {
    display: flex;
    align-items: center;
    color: #2563eb;
    background: #eff6ff;
    padding: 1rem;
    border-radius: 0.75rem;
}
.custom-delivery-info-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.75rem;
    color: #2563eb;
}
.custom-delivery-info-text {
    font-size: 1rem;
}
.custom-delivery-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.custom-delivery-error {
    text-align: center;
    padding: 1.5rem;
    background: #fef2f2;
    border-radius: 0.75rem;
}
.custom-delivery-error-icon {
    width: 3rem;
    height: 3rem;
    color: #ef4444;
    margin-bottom: 1rem;
}
.custom-delivery-error-text {
    color: #dc2626;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}
.custom-delivery-error-btn {
    margin-top: 1rem;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: #dc2626;
    color: #fff;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: background 0.15s;
    text-decoration: none;
}
.custom-delivery-error-btn:hover {
    background: #b91c1c;
}
.custom-company-box {
    background: #fff;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: box-shadow 0.15s;
    border: 1px solid #f3f4f6;
}
.custom-company-box:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
.custom-company-header {
    background: #f9fafb;
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
}
.custom-company-logo {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
    margin-right: 1rem;
}
.custom-company-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
}
.custom-company-table-wrapper {
    overflow-x: auto;
}
.custom-company-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}
.custom-company-table-head {
    background: #f3f4f6;
}
.custom-company-th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #e5e7eb;
}
.custom-company-tr {
    transition: background 0.15s;
}
.custom-company-tr:hover {
    background: #f3f4f6;
}
.custom-company-td {
    padding: 1rem 1.5rem;
    white-space: nowrap;
    font-size: 1rem;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
}
.custom-company-td-price {
    font-weight: 600;
    color: #16a34a;
}
