/* Manage Addresses - Page Specific Styles */
/* Only contains styles unique to manageAddresses.php, shared styles moved to address-modal.css */

/* Page Layout */
.address-wizard {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styling */
.address-wizard .page-header {
    background: #0d6efd;
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.address-wizard .page-header h2 {
    margin: 0;
    font-weight: 600;
}

.address-wizard .page-header .home-link {
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.address-wizard .page-header .home-link:hover {
    opacity: 1;
    color: white;
}

/* Card Styling */
.address-wizard .wizard-card {
    background: white;
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.address-wizard .wizard-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.address-wizard .wizard-card-header {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-bottom: 1px solid #dee2e6;
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: #495057;
}

.address-wizard .wizard-card-body {
    padding: 1.5rem;
}

/* Address Input Section */
.address-wizard .address-input-section {
    text-align: center;
    padding: 1rem;
}

.address-wizard .address-input-btn {
    background: #0d6efd;
    border: none;
    border-radius: 50px;
    padding: 1rem 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.address-wizard .address-input-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

.address-wizard .address-input-description {
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 0.75rem;
}

/* Favorites Section - Page Specific */
.favorites-section {
    margin-top: 2rem;
}

.section-header {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1rem 1.5rem;
    border-radius: 8px 8px 0 0;
    margin-bottom: 0;
}

.section-header h6 {
    margin: 0;
    color: #2d3436;
    font-weight: 600;
}

.favorite-item {
    background: white;
    border: 1px solid #e9ecef;
    border-top: none;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.favorite-item:last-child {
    border-radius: 0 0 8px 8px;
}

.favorite-item:hover {
    background: #f8f9fa;
}

.favorite-label-input {
    border: 2px solid #e9ecef;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    transition: border-color 0.3s ease;
}

.favorite-label-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.favorite-address-display {
    background: #f8f9fa;
    padding: 0.75rem;
    border-radius: 6px;
    border-left: 4px solid #667eea;
}

.favorite-address-main {
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.25rem;
}

.favorite-address-sub {
    color: #6c757d;
    font-size: 0.9rem;
}

.delete-favorite-btn {
    border: 2px solid #dc3545;
    color: #dc3545;
    background: white;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.delete-favorite-btn:hover {
    background: #dc3545;
    color: white;
}

/* Save Button */
.save-labels-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1.5rem;
    border-radius: 0 0 8px 8px;
    text-align: center;
}

.save-labels-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.save-labels-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    color: white;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 2rem;
    color: #6c757d;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}
