/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #f8f9fa;
}

/* Navbar Styles */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 600;
    color: #0d6efd;
}

/* Back Button */
.back-button {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    margin-bottom: 2rem;
}

.back-button i {
    margin-right: 8px;
}

/* Hero Section */
.address-hero {
    background: linear-gradient(rgba(13, 110, 253, 0.1), rgba(13, 110, 253, 0.1));
    padding: 4rem 0;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.address-hero h1 {
    font-weight: 700;
    color: #0d6efd;
}

/* Address List */
.address-list {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Address Card */
.address-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.address-card:hover {
    transform: translateY(-5px);
}

.address-card.default {
    border: 2px solid #0d6efd;
}

.address-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #0d6efd;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.address-type {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #0d6efd;
}

.address-type i {
    font-size: 1.2rem;
}

.address-details h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.address-details p {
    margin-bottom: 0.5rem;
    color: #666;
}

.address-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 0;
}

.empty-state img {
    margin-bottom: 1.5rem;
}

.empty-state h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Modal Styles */
.modal-content {
    border-radius: 10px;
}

.modal-body {
    padding: 2rem;
}

/* Address Type Selector */
.address-type-selector {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-check-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* Form Styles */
.form-label {
    font-weight: 500;
    color: #333;
}

.form-control {
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Toast Styles */
.toastify {
    border-radius: 8px !important;
    font-family: 'Poppins', sans-serif;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .address-hero {
        padding: 2rem 0;
    }

    .address-actions {
        flex-direction: column;
    }

    .address-actions .btn {
        width: 100%;
    }

    .address-type-selector {
        flex-direction: column;
    }
} 