/*
.shipping-form-container .panel-heading h4 {
    margin: 0;
    font-weight: 600;
}

.step-container {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
    margin-bottom: 15px;
}

.step-title {
    color: #660099;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.form-group label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 6px;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #660099;
    box-shadow: 0 0 0 0.2rem rgba(102, 0, 153, 0.25);
}

.btn {
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #660099 0%, #8B008B 100%);
    border: none;
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #8B008B 0%, #660099 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(102, 0, 153, 0.3);
}

.btn-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    color: white;
}

.btn-success:hover {
    background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
}

.btn-default {
    background: #6c757d;
    border: none;
    color: white;
}

.btn-default:hover {
    background: #5a6268;
    color: white;
}

#packageDetailsContainer .panel-info {
    border-color: #660099;
}

#packageDetailsContainer .panel-heading {
    background: linear-gradient(135deg, #660099 0%, #8B008B 100%);
    color: white;
    border-color: #660099;
}

#packageDetailsContainer .panel-title {
    margin: 0;
    font-weight: 600;
}

.rate-card {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.rate-card:hover {
    border-color: #660099;
    box-shadow: 0 4px 12px rgba(102, 0, 153, 0.15);
    transform: translateY(-2px);
}

.rate-card .panel-heading {
    background: linear-gradient(135deg, #660099 0%, #8B008B 100%);
    color: white;
    border-radius: 6px 6px 0 0;
}

.rate-card .panel-title {
    margin: 0;
    font-weight: 600;
}

.rate-info {
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f1f3f4;
}

.rate-info:last-child {
    border-bottom: none;
}

.loading {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.alert {
    border-radius: 6px;
    border: none;
    margin-bottom: 20px;
}

.alert-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
}

.alert-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

@media (max-width: 768px) {
    .step-container {
        padding: 15px;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .text-right {
        text-align: center !important;
    }
    
    .rate-card {
        margin-bottom: 20px;
    }
}

.pac-container {
    border-radius: 6px;
    border: 2px solid #660099;
    box-shadow: 0 4px 12px rgba(102, 0, 153, 0.15);
}

.pac-item {
    padding: 10px 15px;
    border-bottom: 1px solid #f1f3f4;
    cursor: pointer;
}

.pac-item:hover {
    background-color: #f8f9fa;
}

.pac-item-selected {
    background-color: #660099 !important;
    color: white !important;
}
.checkbox {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #660099;
}

.checkbox label {
    font-weight: 500;
    color: #495057;
    cursor: pointer;
}

.checkbox input[type="checkbox"] {
    margin-right: 8px;
    transform: scale(1.2);
}

.form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-control.is-valid {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.step-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.progress-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.progress-step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 10px;
    position: relative;
}

.progress-step.active {
    background: #660099;
    color: white;
}

.progress-step.completed {
    background: #28a745;
    color: white;
}

.progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 20px;
    height: 2px;
    background: #e9ecef;
    transform: translateY(-50%);
}

.progress-step.completed::after {
    background: #28a745;
}
*/