.profile-card {
    max-width: 600px;
    margin-bottom: 2rem;
}

.order-history-card {
    max-width: 600px;
}

.profile-picture-section {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.profile-picture-container {
    position: relative;
}

.profile-picture {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary);
}

.profile-picture-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--primary);
}

.profile-picture-placeholder i {
    font-size: 3rem;
    color: var(--primary);
}

.form-text {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: var(--gray);
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.order-card {
    background: var(--light);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(10, 92, 62, 0.1);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(10, 92, 62, 0.1);
}

.order-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.order-id {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.1rem;
}

.order-date {
    font-size: 0.875rem;
    color: var(--gray);
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-processing {
    background: #cce5ff;
    color: #004085;
}

.status-completed {
    background: #d4edda;
    color: #155724;
}

.status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

.order-items {
    margin-bottom: 1rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.order-item:last-child {
    border-bottom: none;
}

.item-name {
    color: var(--dark);
}

.item-price {
    font-weight: 600;
    color: var(--primary);
}

.order-total {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 2px solid rgba(10, 92, 62, 0.2);
    font-size: 1.1rem;
    font-weight: 700;
}

.total-amount {
    color: var(--primary);
    font-size: 1.2rem;
}

.no-orders {
    text-align: center;
    padding: 3rem 1rem;
}

.no-orders i {
    font-size: 4rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.no-orders p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

@media (max-width: 480px) {
    .order-header {
        flex-direction: column;
        gap: 0.75rem;
    }

    .order-status {
        align-self: flex-start;
    }
}
